What does the following program segment do?
```
for (i = 1; i <= 5; i++) {
for (j = 1; j <= 3; j++) {
for (k = 1; k <= 4; k++) {
System.out.print('*');
}
System.out.println();
}
System.out.println();
}
```
```
****
****
****
****
****
****
****
****
****
****
****
****
****
****
****
```
You might also like to view...
An existing query for a database can be opened by double-clicking in the ________ of the Database window
Fill in the blank(s) with correct word
Which of the following statements about LINQ is false?
a) A new LINQ query must be used when changes are made to the data source. b) A LINQ query does not need to have a let clause c) A LINQ query returns an IEnumerable object d) LINQ stands for Language Integrated Query.