Advertisements
Advertisements
Question
The correct statement to create an object named mango of class fruit:
Options
Fruit Mango = new fruit();
fruit mango = new fruit();
Mango fruit = new Mango();
fruit mango = new mango();
MCQ
Solution
fruit mango = new fruit();
Explanation:
The class and object names should be the same, as specified in the query.
shaalaa.com
Objects as Instances of a Class
Is there an error in this question or solution?