Computer Applications

If the name of the class is "Yellow", what can be the possible name for its constructors?

  1. yellow
  2. YELLOW
  3. Yell
  4. Yellow

Java Constructors

ICSE 2024

6 Likes

Answer

Yellow

Reason — In Java, a constructor must have the same name as the class. It initializes an object when it is created. Since the class name is Yellow, the constructor's name must be exactly Yellow, matching the class name including capitalization.

Answered By

4 Likes


Related Questions