Excel's ____________________ view helps you refine the appearance of a worksheet before you print it.

Fill in the blank(s) with the appropriate word(s).


Page Layout

Computer Science & Information Technology

You might also like to view...

Faculty at universities often use course management software such as ________ so that students can communicate outside of class and have easy access to class materials

A) Teachpro B) Whiteboard C) Blackboard D) LinkedIn

Computer Science & Information Technology

Lockstep synchronization does not ________.

a) occur when threads must enter and leave their critical sections in strict alternation b) improve the efficiency of a process by forcing threads to operate at the same speed c) force faster threads to operate at the same speed as slower threads d) occur as a result of using a single variable to govern access to threads’ critical sections

Computer Science & Information Technology

What happens if a security group that's an ACE in a shared folder is converted to a distribution group?

a: A security group can't be converted to a distribution group it it has already been assigned permissions b: The group is removed from the DACL automatically. c: The group remains in the DACL, but the ACE has no effect on members' access to the resource d: The group remains in the DACL, and permissions assigned to the group affect access to the resource as though it were still a security group

Computer Science & Information Technology

Consider the following structure definition. Which Dim statement would correctly declare an array of this structure for elements having subscripts from 0 through 30?

``` Structure carType Dim yr As Integer Dim make As String Dim model As String End Structure ``` (A) You cannot have an array of structures. (B) Dim carType(30) (C) Dim car(30) As carType (D) Dim carType(30) As car

Computer Science & Information Technology