Kizspy | Question: 8 (Choose 1 answer)
Assume that all library files are imported.What is the output of the following code snippet?
public static void main(String[] args){Date a=new Date();
boolean result = a instanceof Date;
System.out.print("a is an instance of "+result); }
A. a is an instance of true
B. a is an instance of Object
C. a is an instance of Date
D. a is an instance of false