0%
0 / 15 answered
this Keyword Practice Test
•15 QuestionsQuestion
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?
Consider the Counter class. Which statement best describes the incrementShared method?