11. 

Which of the following class level (nonlocal) variable declarations will not compile?

A. protected int a;
B. transient int b = 3;
C. private synchronized int e;
D. volatile int d;

12. 

Given a method in a protected class, what access modifier do you use to restrict access to that method to only the other members of the same class?

A. final
B. static
C. private
D. protected

13. 

Which is a valid declaration within an interface?

A. public static short stop = 23;
B. protected short stop = 23;
C. transient short stop = 23;
D. final void madness(short stop);