1. Q9: Put the code in the right order to complete the default constructor.🔗 public class SongType{ --- //attributes declared here //... //default constructor public SongType(){ --- title = ""; artist = ""; length = 0; --- } } 🔗
2. Q10: Put the code in the right order to complete the specific overloaded constructor.🔗 public class SongType{ --- //attributes declared here //... //overloaded constructor public SongType(String n, String a, double ln){ --- title = ""; artist = ""; length = 0; --- } } 🔗
3. Q11: Which of the following is NOT true about constructors?🔗 Constructors must be named the same name as the class🔗 Default constructors have no parameters🔗 Classes cannot have more than a single constructor🔗 Constructors must be public🔗 Constructors have no return type, not even void🔗 🔗
4. Q12: Two constructors are shown for the Point class below. Is this code valid?🔗 public class Point { private int x; private int y; public Point (int one, int two) {/*LOGIC*/} public Point (int a, int b) {/*LOGIC*/} } valid🔗 invalid🔗 cannot be determined🔗 🔗