What does the following program do?
```
// Printing.java
public class Printing {
public static void main(String[] args) {
for (int i = 1; i <= 10; i++) {
for (int j = 1; j <= 5; j++) {
System.out.print('@');
}
System.out.println();
}
}
}
```
```
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
```
You might also like to view...
Hyperthreading is a technology for processing two execution ________ within a single processor core
a. Blocks b. Sockets c. Threads d. None of the above
The ____ is the window that appears on every screen when the program is running.
A. library B. service C. project D. user interface