Question: Select all of the classes that have a constructor. Hint: there is more than one correct answer. class Author { String name; String [ ]

Select all of the classes that have a constructor. Hint: there is more than one correct answer.
class Author {
String name;
String[] famousWorks;
}
class Author {
String name;
String[] famousWorks;
Author(){
name = "Leo Tolstoy";
famousWorks ={"War and Peace", "Anna Karenina"};
}
}
class Author {
String name;
String[] famousWorks;
Author(String n, String[] fw){
name = n;
famousWorks = fw;
}
}
class Author {
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!