Just for fun, let's ask
what is the class of
"Hello, BigBinary Academy".
The result is String
.
And that is correct.
hello
is an instance
of the String
class.
Now, let's try the same
thing on an integer.
The output is Integer
.
It means all the integers are
instances of the class Integer
.