What is null?
null
Is null an instance of anything?
What set does null belong to?
How is it represented in the me
Null is not an instance of any class.
However, you can assign null to variables of any (object or array) type:
// this is false boolean nope = (null instanceof String); // but you can still use it as a String String x = null; "abc".startsWith(null);