d. 4,294,967,296
True
b. int myInt = new int();
True
a. string name = Student.firstName;
b. 3
a. Overloading
b. Optional
b. You must override the method in your derived class.
a. Create private data members.
c. Use public properties.
b. Converting a value type to a reference type
a. You can pass the arguments in to the method in any order using the parameter names.
b. Generics enable you to create classes that accept the type at creation time.
c. It is a placeholder that will contain the object type used.
b. They are passed by reference.
E1. You want to create a type in your code that stores multiple values of differing types but don’t need the full facilities of a class file. What is the value type that can serve your needs?
a. Array
b. Struct
c. Queue
d. Linked List
b. Struct
E2. You can change the increment of Enumerations. True or false?
False
E3. Overloading a method can be accomplished by changing only the order of the parameters. True or false?
False
E4. Optional parameters in a method must exist where in the parameter list?
a. At the beginning
b. At the end
c. After any default parameters
d. Anywhere
b. At the end
E5. What modifier is used on the properties of a class?
a. Private
b. Static
c. Public
d. Property
c. Public