<code>if (a instanceof Dog) ...</code> is true when
- Acheck_circle
a's runtime type is Dog or a Dog subclass
- B
a is the literal Dog class
- C
a is null
- D
Always
Explanation
<code>instanceof</code> checks whether the object is of the named type or a subtype; false for null.