0%
0 / 15 answered

this Keyword Practice Test

15 Questions
Question
1 / 15
Q1

public class Counter

{

private int instanceCount;

private static int sharedCount;

public static void incrementShared()

{

    // Line 1

    sharedCount++;

    // Line 2

    this.instanceCount++;

    // Line 3

}

// other methods not shown

}

Consider the Counter class. Which statement best describes the incrementShared method?

Question Navigator