1.What is the parameter in this method known as? public void displayAbsoluteValue(int value = 1) a.Modified b.Optional...

Question:

1.What is the parameter in this method known as?
public void displayAbsoluteValue(int value = 1)
a.Modified
b.Optional
c.Named
d.Default
2.When you create an abstract method, how do you use that method in a derived class?
a.You must overload the method in your derived class.
b.You must override the method in your derived class.
c.Abstract methods cannot be used in derived classes.
d.You need to declare the method as virtual in your derived class.
3.How do you enforce encapsulation on the data members of your class?
a.Create private data members.
b.Create private methods.
c.Use public properties.
d.Use private properties.
e.Use the protected access modifier on methods, properties, and member variables.
4.Boxing refers to:
a.Encapsulation
b.Converting a value type to a reference type
c.Converting a reference type to a value type
d.Creating a class to wrap functionality in a single entity
5.What is one advantage of using named parameters?
a.You can pass the arguments in to the method in any order using the parameter names.
b.You can pass in optional arguments as long as you use the parameter names in your arguments.
c.Named parameters make compiling much faster.
d.Name parameters do not affect compile time.
6.What is an advantage of using generics in .NET?
a.Generics enable you to create classes that span types.
b.Generics enable you to create classes that accept the type at creation time.
c.Generics perform better than nongeneric classes.
d.Generics do not use optional parameters.
7.What does the designator indicate in a generic class?
a.It is the parameter for all arguments passed in to the class constructor.
b.It is the parameter designator for the default method of the class.
c.It is a placeholder that will contain the object type used.
d.It is a placeholder that will serve as the class name.
8.How are the values passed in generic methods?
a.They are passed by value.
b.They are passed by reference.
c.They must be encapsulated in a property.
d.They are passed during class instantiation.
Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  answer-question

Introduction To Statistical Investigations

ISBN: 9781118172148

1st Edition

Authors: Beth L.Chance, George W.Cobb, Allan J.Rossman Nathan Tintle, Todd Swanson Soma Roy

Question Posted: