Respuesta :
Answer:
A) public MyClass ()
C) public MyClass (int a, double b)
Explanation:
In Java Constructors are special methods used to initialize objects of a class and they are called when a new object is created with the new keyword.
Being a special method a constructor cannot not have a return type... not even void.
The name of the constructor must match the name of the class and constructors can also have parameter(s)
The following could be the constructor for the public class
A) public MyClass ()
C) public MyClass (int a, double b)
The following information should be considered:
- In Java Constructors are special methods used to initialize objects of a class and they are called when a new object is created with the new keyword.
- Being a special method a constructor cannot not have a return type... not even void.
- The name of the constructor must match the name of the class and constructors can also have parameter(s)
Learn more: brainly.com/question/16911495