Quiz: Static vs Final

  • Due Sep 12, 2013 at 11:59pm
  • Points 10
  • Questions 5
  • Available Sep 6, 2013 at 12am - Sep 13, 2013 at 12:05am
  • Time Limit None
  • Allowed Attempts 3

Instructions

You have only 5 minutes to answer the following 5 questions. However, you may retake this quiz up to 3 times until the deadline. Every question has two correct answers, and is based on the following code snippet:

public class Gizmo {

    private int a;
    private final int b;
    private static int c;
    private static final int d;

    public Gizmo() {
        // TODO
    }
}
Only registered, enrolled users can take graded quizzes