How many times is the println statement executed?

```
for (int i = 0; i < 10; i++)
for (int j = 0; j < i; j++)
System.out.println(i * j)
```

a. 100
b. 20
c. 10
d. 45


d. 45

Computer Science & Information Technology

You might also like to view...

Which statement below could be used to simulate the outputs of rolling a six-sided die? Suppose randomNumbers is a SecureRandom object.

a. 1 + randomNumbers.nextInt(6); b. 1 + randomNumbers.nextInt(2); c. 6 + randomNumbers.nextInt(1); d. 3 + randomNumbers.nextInt(3);

Computer Science & Information Technology

Two or more computers that share files, printers, and other computer resources is called a(n)

A) Organization B) Network C) System D) Group

Computer Science & Information Technology

The waiting area where print jobs are stored and sequenced as they await the print device is the print ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

Which of the following is the most commonly used client/server network topology?

A. Star B. Cluster C. Ring D. Hierarchical

Computer Science & Information Technology