The Text Box button is located in the ________ group on the Layout tab

Fill in the blank(s) with correct word


Insert

Computer Science & Information Technology

You might also like to view...

What is the output of the following program?

``` public class Test { public static void main(String[] args) { int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}}; for (int row = 0; row < values.length; row++) { System.out.print(m(values[row]) + " "); } } public static int m(int[] list) { int v = list[0]; for (int i = 1; i < list.length; i++) if (v < list[i]) v = list[i]; return v; } } ``` a. 3 33 b. 1 1 c. 5 6 d. 5 33 e. 33 5

Computer Science & Information Technology

Which of the following is a syntax error?

a) Having duplicate case statements in the same switch statement b) Beginning and ending a switch statement body with braces c) Preceding a case label with the default label in a switch statement d) Failing to end a case with the break statement.

Computer Science & Information Technology

If your organization uses ________, you can share workbooks through the E-mail command in Excel

A) Hotmail B) Gmail C) any email program D) Outlook

Computer Science & Information Technology

Which of the following is not a basic strategy to control risks?

a) Defense b) Transference c) Acceptance d) Deterrence

Computer Science & Information Technology