Given the following classes:
Which two options fail to compile when placed at line n1 of the main method?
A.
employee.salary = 50_000;
B.
director.salary = 80_000;
C.
employee.budget = 200_000;
D.
manager.budget = 1_000_000;
E.
manager.stockOption = 500;
F.
director.stockOptions = 1_000;
CE are correct
C,E
C y E