polymorphism c programming questions

6.

Which of the followings is the correct way to overload + operator?
A.

public sample operator + ( sample a, sample b )

B.

public abstract operator + ( sample a, sample b)

C.

public abstract sample operator + (sample a, sample b )

D.

public static sample operator + ( sample a, sample b )

E.     All of the above
Answer & Explanation

Answer: Option D

Explanation:

No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
7.

Which of the following statements is correct?
A.     Static methods can be a virtual method.
B.     Abstract methods can be a virtual method.
C.     It is necessary to override a virtual method.
D.     When overriding a method, the names and type signatures of the override method must be the same as the virtual method that is being overriden.
E.     We can override virtual as well as non-virtual methods.
Answer & Explanation

Answer: Option D

Explanation:

No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
8.

Which of the following statements are correct?

All operators in C#.NET can be overloaded.
We can use the new modifier to modify a nested type if the nested type is hiding another type.
In case of operator overloading all parameters must be of the different type than the class or struct that declares the operator.
Method overloading is used to create several methods with the same name that performs similar tasks on similar data types.
Operator overloading permits the use of symbols to represent computations for a type.

A.     1, 3
B.     2, 4
C.     2, 5
D.     3, 4
Answer & Explanation

Answer: Option C

Explanation:

No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
9.

Which of the following statement is correct about the C#.NET code snippet given below?

public class Sample
{
public int x;
public virtual void fun()
{ }
}
public class DerivedSample : Sample
{
new public void fun()
{ }
}

A.     DerivedSample class hides the fun() method of base class.
B.     The DerivedSample class version of fun() method gets called using Sample class reference which holds DerivedSample class object.
C.     The code replaces the DerivedSample class version of fun() method with its Sample class version.
D.     It is not possible to hide Sample class version of fun() method without use of new in DerivedSample class.
Answer & Explanation

Answer: Option A

Explanation:

No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
10.

Which of the following statements is correct?
A.     The conditional logical operators cannot be overloaded.
B.     When a binary operator is overloaded the corresponding assignment operator, if any, must be explicitly overloaded.
C.     We can use the default equality operator in an overloaded implementation of the equality operator.
D.     A public or nested public reference type does not overload the equality operator.
E.     The array indexing operator can be overloaded.
Answer & Explanation

Answer: Option A

Explanation:

No answer description available for this question.

Leave a Reply0

Your email address will not be published.