Which of the following applications is NOT an example of presentation software?
A) Sway
B) PowerPoint
C) Acrobat
D) Prezi
C
You might also like to view...
Given a linked list (using the code from the book) and assuming there are at least two nodes in the list, which of the following sets of statements would implement a function to return and remove the last item in the list?
a. NodePtr here; here=head; while(here->link != NULL) { here = here ->link; } return here->data; delete here; b. NodePtr here; here=head; while(here->link != NULL) { here = here ->link; } delete here; return here->data; c. int tmp; NodePtr here, there; here=head; while(here->link != NULL) { there = here; here = here ->link; } there->link = NULL; tmp=here->data; delete here; return tmp; d. int tmp; NodePtr here, there; here=head; while(here->link != NULL) { there = here; here = here ->link; } there->link = NULL; tmp=here->data; return tmp; delete here;
Windows 8.1 functions on all types of devices
Indicate whether the statement is true or false
You can press the ____ keyboard shortcut keys to open the Bookmark dialog box.
A. CTRL+K B. CTRL+S C. CTRL+G D. CTRL+P
You can insert an I-frame on a page by double-clicking the Inline Frame tag in the ____.
A. Folder List B. Common toolbar C. Toolbox D. Tables panel