Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Visual C# How to Program
Quiz 4: Introduction to Classes,Objects,Methods and Strings
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
Multiple Choice
Which of the following statements is false
Question 2
True/False
By default,everything in a class is ________,unless you specify otherwise by providing access modifiers. a) public b) private c) protected d) None of the above.
Question 3
True/False
The code myAccount.SetName(theName); calls myAccounts's SetName method,passing theName's value as SetName's argument.
Question 4
Multiple Choice
Each class you create becomes a new type you can use to create objects,so C# is a(n) ________ programming language.
Question 5
Multiple Choice
Which of the following statements about creating,compiling and running a Visual C# project with two classes is false
Question 6
Multiple Choice
Which of the following statements is false
Question 7
True/False
A method such as Main "drives" an object by calling its methods-without having to know how the class's internal mechanisms work.In this sense,the class containing method Main is referred to as a driver class.