You can precisely align objects using ________, the nonprinting dotted lines that form a pattern of one-inch squares
Fill in the blank(s) with correct word
gridlines
You might also like to view...
In the following search function for a linked list (using the Node and NodePtr as defined in the text), why is there code to check if here is NULL?
NodePtr search(NodePtr head, int target) { nodePtr here = head; if(here == NULL) { return NULL; } else { while( here->data != target && here->link != NULL) { here = here->link; } if(here->data == target) { return here; } else { return NULL; } } } a. the list may be empty b. the list may be full c. there is no reason for that code to be there d. A and B
Which of the following options is not used to navigate between slides?
A. Slides tab B. Design tab C. Previous Slide and Next Slide buttons D. Scroll bar
DUAL uses the ____ topology table to track the status of all links in a network.
A. EIGRP B. OSPF C. RIPv1 D. RIPv2
The _________ policy results in the fewest number of page faults.
A) ?Optimal ? B) ?FIFO ? C) ?Clock ? D) ?LRU