0 votes
in JAVA by
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

1 Answer

0 votes
by

a) Compilation Error

...