What is the value of times displayed?

```
public class Test {
public static void main(String[] args) {
Count myCount = new Count();
int times = 0;

for (int i=0; i<100; i++)
increment(myCount, times);

System.out.println(
"myCount.count = " + myCount.count);
System.out.println("times = "+ times);
}

public static void increment(Count c, int times) {
c.count++;
times++;
}
}

class Count {
int count;

Count(int c) {
count = c;
}

Count() {
count = 1;
}
}```
a. 101
b. 100
c. 99
d. 98
e. 0

e

Computer Science & Information Technology

You might also like to view...

If you change a file extension by renaming the file,

A) You also change the data in the file B) You also change the data header C) You will not be able to open the file D) Windows will change the icon that represents the file

Computer Science & Information Technology

You hate buying new equipment for your computer if it still works. But you have finally decided to upgrade your old CD-ROM drive with a new Blu-ray player. Which will most likely be required to power the drive?

A. HDMI to Displayport adapter B. Molex to ATX 12v adapter C. Molex to SATA adapter D. USB serial adapter

Computer Science & Information Technology