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. 0

Computer Science & Information Technology

You might also like to view...

By default, the ____ is set for all items to display and print.

A. print options B. print range C. print target D. print index

Computer Science & Information Technology

What does the "preload images" options do?

What will be an ideal response?

Computer Science & Information Technology

How can a user view the contents of a Windows directory?

What will be an ideal response?

Computer Science & Information Technology

A field with the ____ data type can contain an attached file, such as an image, document, chart, or spreadsheet.

A. File B. Attachment C. Document D. Extend

Computer Science & Information Technology