A programmer is reading some documentation about the Math class in the standard Java library. The documentation shows another class definition containing the following example of client code:
System.out.println(Math.E);
Hence, which of the following does s/he correctly conclude?

(a) In the Math class, E is an instance variable.
(b) In the Math class, E is a class variable.
(c) In the Math class, E is an instance method.
(d) In the Math class, E is a class method.
(e) In the Math class, E is private.
(f) In the Math class, E is public.

Select all correct answers.