Which of the following is NOT a possible display option when the Set Up Slide Show button is clicked?

A) Browsed by an individual (window)
B) Browsed at a kiosk (full screen)
C) Presented by a speaker (full screen)
D) Presented as an online video (window)


D

Computer Science & Information Technology

You might also like to view...

Which of the following will insert the node pointed to by newPtr between the nodes pointed to by aPtr and bPtr in a linked list?

a) newPtr->link = aPtr; bPtr->link = aPtr; b) aPtr = newPtr->link; bPtr = newPtr->link; c) aPtr->link = newPtr->link; newPtr->link = bPtr->link; d) aPtr->link = newPtr; newPtr->link = bPtr;

Computer Science & Information Technology

(Searching for Substrings) Write a program that inputs a line of text and a search string from the keyboard. Using function strstr, locate the first occurrence of the search string in the line of text, and assign the location to variable searchPtr of type char *. If the search string is found, print the remainder of the line of text beginning with the search string. Then use strstr again to

locate the next occurrence of the search string in the line of text. If a second occurrence is found, print the remainder of the line of text beginning with the second occurrence. What will be an ideal response?

Computer Science & Information Technology

Discuss the basis of the X Window architecture.

What will be an ideal response?

Computer Science & Information Technology

?According to the World Wide Web Consortium (W3C), the _____ "represents some flow content, optionally with a caption, that is self-contained and is typically referenced as a single unit from the main flow of the document."

A. ?contentelement B. ?layoutelement C. ?figureelement D. ?pictureelement

Computer Science & Information Technology