Login
Remember
Register
Ask a Question
What will be the output of the following Java code snippet?
0
votes
asked
Aug 21, 2022
in
JAVA
by
sharadyadav1986
What will be the output of the following Java code snippet?
class P
{
}
enum Enums extends P
{
PQR, QRS, RST, STU;
}
a) Compilation Error
b) Runtime Error
c) EnumNotDefined Exception
d) It runs successfully
java
program
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 21, 2022
by
sharadyadav1986
a) Compilation Error
...