A ________ identifies the source of an online resource and is formatted differently from the other text on a slide
A) definition B) citation C) reference D) copyright
B
You might also like to view...
The following code is an example of a __________ recursive algorithm.
``` int myRecursion(int array[], int first, int last, int val) { int num; if (first > last) return -1; num = (first + last)/2; if (array[num] == val) return num; if (array[num] < val) return myRecursion(array, num + 1, last, val); else return myRecursion(array, first, num - 1, val); } ``` a. Towers of Hanoi b. QuickSort c. binary search d. doubly linked list e. None of these
The output of the following program is
number=2 if [ $number -eq 3 ] then echo "Hi!" else echo "Bye!" fi a: number =2 b: number number c: Hi! d: Bye! e: Hi! Bye!
Font ____ are formats such as bold, italic, and underlining that you can apply to affect the way text and numbers look in a worksheet.
A. styles B. Formats C. Fonts D. Clip arts
What has become the preferred way to present actions to users?
a. Fixed tabs b. The ActionBar c. Context menus d. Dialog menus