1.

Correct way to define object of sample class in which code will work correctly is:

A. abc s1 = new abc(1);
B. abc s1 = new abc();
C. abc s2 = new abc(1.4f);
D. abc s2 = new abc(1, 1.4f);
Answer» E.


Discussion

No Comment Found