Computer Applications

A constructor is always:

  1. private
  2. protected
  3. secure
  4. public

Java Constructors

23 Likes

Answer

public

Reason — A constructor is always public because it is always called from outside the class while creating an object.

Answered By

13 Likes


Related Questions