Write a short Java program that outputs the following:
```
*
*
*
************** Time flies like an arrow
*
*
*
```
```
public class Arrow {
public static void main(String [] args) {
System.out.println("*");
System.out.println(" * ");
System.out.println("*");
System.out.println(" ************** Time flies like an arrow");
System.out.println(" *");
System.out.println(" *");
System.out.println("*");
}
}
```
You might also like to view...
Match the following Table Tools Layout features with their descriptions:
I. Merge A. set margins within a cell II. Alignment B. sort within a table III. Data C. delete cells, columns, rows IV. Cell Size D. join or split two or more cells V. Rows & Columns E. adjust row height and column width
Access can sort records by more than one field
Indicate whether the statement is true or false