What is wrong with the following code?
ArrayList list = new ArrayList();
(1); System.out.println((0));
a. Missing import statement
b. Incorrect use of generics
c. Syntax error in println statement
d. Missing semicolon



Answer :

Other Questions