Question 1
You can assign ________ to a variable of Object[] type.
◦ new String[100]
◦ new java.util.Date[100]
◦ new char[100]
◦ new double[100]
◦ new int[100]
Question 2
The equals method is defined in the Object class. Which of the following is correct to override it in the String class?
◦ public boolean equals(Object other)
◦ public static boolean equals(String other)
◦ public static boolean equals(Object other)
◦ public boolean equals(String other)