Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Home
»
C# Programming
»
Polymorphism
Which of the following modifier is used when a virtual method is redefined by a derived class?
overloads
override
overridable
virtual
base
Correct Answer:
override
Next Question→
More Questions from
Polymorphism
In order for an instance of a derived class to completely take over a class member from a base class, the base class has to declare that member as
Which of the following statements is correct?
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.
Which of the following unary operators can be overloaded? true false + new is
A derived class can stop virtual inheritance by declaring an override as
Which of the following operators cannot be overloaded? true false new ~ sizeof
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() { } }
Which of the following keyword is used to change the data and behavior of a base class by replacing a member of a base class with a new derived member?
Which of the following statements is correct?
Which of the following statements is correct?
Discussion & Comments
No comments yet. Be the first to comment!
Name:
Comment:
Post Comment
Join Discussion
Discussion & Comments