ii) How many objects are created in the following piece of code? Why?.
Check c1, c2, c3;
cl = new Check ();
c3 = new Check ();
Answers
Answered by
2
Answer:
In this code 2 objects are created as the new operator is used 2 times.
as3943172:
thank you
Similar questions