Given a class named Main,
which one of these constructor declarations is valid for the class Main?
Select the one correct answer.
Main()
{}Main()
{}Main()
{}Main()
{}(a)
A constructor cannot specify any return type, not even void.
A constructor cannot be final, static, or abstract.