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

Related questions

0 votes
asked Mar 23, 2021 in JavaScript by sharadyadav1986
0 votes
asked May 3, 2021 in JAVA by Robindeniel
...