How to create object of the class? Describe few object in detail.
Answers
Answered by
0
class Flower
Objects which can be created using this class :
Flower rose = new Flower();
Flower lily = new Flower();
Flower lotus = new Flower();
Objects which can be created using this class :
Flower rose = new Flower();
Flower lily = new Flower();
Flower lotus = new Flower();
Similar questions