IndiaBIX
IndiaBIX
Start typing & press "Enter" or "ESC" to close
  • Home
  • Jobs
  • Results
  • Current Affairs
  • GK
  • Online Test
  • HR Interview
  • BLOG

Polymorphism - General Questions

  • Home
  • Computer Science & Engineering
  • C# Programming Questions and Answers
  • Polymorphism - General Questions
1. 

Which of the following are necessary for Run-time Polymorphism?

1 The overridden base method must be virtual, abstract or override.

2 Both the override method and the virtual method must have the same access level modifier.

3 An override declaration can change the accessibility of the virtual method.

4 An abstract inherited property cannot be overridden in a derived class.

5 An abstract method is implicitly a virtual method.

A. 1, 3
B. 1, 2, 5
C. 2, 3, 4
D. 4 only

Answer: Option B

Explanation:

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

2. 

Which of the following statements is  correct?

A. Only one object can be created from an abstract class.
B. By default methods are virtual.
C. If a derived class does not provide its own version of virtual method then the one in the base class is used.
D. If the method in the derived class is not preceded by override keywords, the compiler will issue a warning and the method will behave as if the override keyword were present.
E. Each derived class does not have its own version of a virtual method.

Answer: Option C

Explanation:

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

3. 

Which of the following can be declared as a virtual in a class?

1 Methods

2 Properties

3 Events

4 Fields

5 Static fields

A. 1, 2, 3
B. 3, 5
C. 2, 4
D. 2, 3, 5

Answer: Option A

Explanation:

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

4. 

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

A. new
B. base
C. virtual
D. overrides
E. overloads

Answer: Option C

Explanation:

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

5. 

Which of the following modifier is used when a virtual method is redefined by a derived class?

A. overloads
B. override
C. overridable
D. virtual
E. base

Answer: Option B

Explanation:

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

6. 

Which of the following operators cannot be overloaded?

1 true

2 false

3 new

4 ~

5 sizeof

 

A. 1, 3
B. 2, 4
C. 3, 5
D. All of the above

Answer: Option C

Explanation:

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

7. 

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: Option A

Explanation:

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

8. 

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: Option A

Explanation:

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

  • 1
  • 2

Questions & Answers

Aptitude Chemical Engineering Civil Engineering Computer Science & Engineering Current Affairs Data Interpretation Electrical & Electronics Engineering Electronics & Communication Engineering General Knowledge Logical Reasoning Mechanical Engineering Non Verbal Reasoning Verbal Ability Verbal Reasoning

Interviews

HR Interview

Jobs

Sarkari Jobs

Results

Rojgar ResultSarkari Result

Admission

Admission 2023

Admit Card

Admit Card 2023

Answer Key

Answer Key 2023
copyright
Privacy Policy
© 2025 IndiaBIX. All Rights Reserved.

Report