When entering the InputBox function in the Code Editor window, the prompt, title, and defaultResponse arguments must be enclosed in ____.

A. quotation marks
B. asterisks
C. square brackets
D. slashes


Answer: A

Computer Science & Information Technology

You might also like to view...

Which of the following is most closely associated with the statement, "Occurs for a given node when a drag operation that started in a different node continues over the given node."

a. onMouseDragEntered b. onMouseDragExited c. onMouseDragged d. onMouseDragOver

Computer Science & Information Technology

In the Properties pane of the CSS Styles panel, when a property in another rule overrides the same property in the selected rule, how does the property in the selected rule display?

A. With a red line through it B. With a dashed line through it C. In boldface D. In italics

Computer Science & Information Technology

The ________ tool is the fastest and easiest way to create report that displays all of the fields and records from the record source a user selects

Fill in the blank(s) with correct word

Computer Science & Information Technology

(Bubble Sort Enhancements) The bubble sort described in Exercise 6.11 is inefficient for large arrays. Make the following simple modifications to improve the performance of the bubble sort:

a) After the first pass, the largest number is guaranteed to be in the highest-numbered element of the array; after the second pass, the two highest numbers are “in place,” and so on. Instead of making nine comparisons on every pass, modify the bubble sort to make eight comparisons on the second pass, seven on the third pass, and so on. b) The data in the array may already be in the proper order or near-proper order, so why make nine passes if fewer will suffice? Modify the sort to check at the end of each pass if any swaps have been made. If none have been made, then the data must already be in the proper order, so the program should terminate. If swaps have been made, then at least one more pass is needed.

Computer Science & Information Technology