| 4. |
What is wrong with the following program? class super { public static void main(string[] arguments) { } }
Please select all the correct answers.
|
| |
A.
|
super should be public. |
| |
B.
|
super is a keyword and may not be used as a class name. |
| |
C.
|
The argument to the main() method should be of type String[]. |
| |
D.
|
The argument to the main() method should be named args. |