Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Correct way of declaration of object of the following class is?
class name

Correct way of declaration of object of the following class is?
class name
a) name n = new name();
b) n = name();
c) name n = name();
d) n = new name();

Answer: a
Explanation: name n = new name();

Join The Discussion