Skip to content
Related Articles
Open in App
Not now

Related Articles

Java | Operators | Question 6

Improve Article
Save Article
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article




class Base {}
  
class Derived extends Base {
   public static void main(String args[]){
      Base a = new Derived();
      System.out.println(a instanceof Derived);
   }
}


(A) true
(B) false


Answer: (A)

Explanation: The instanceof operator works even when the reference is of base class type.

Quiz of this Question

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!