Microsoft Word is a ________ program
A) presentation
B) word processing
C) spreadsheet
D) graphics
Answer: B
You might also like to view...
GPRS, ATM, FDDI, and SLIP are examples of:
a. Data link layer protocols b. Physical layer protocols c. Network layer protocols d. Encryption protocols
Which of the following statements does not alter the value stored in a memory location?
a. int a; b. number = 12; c. y = y + 2; d. width = Integer.parseInt(input);
The best-case time complexity for this function would be _________, where n is the number of elements.
```
1 bool search( Node
Which of the following operations do random access iterators have?
a) Prefix operator* to make available the container element for use as l-value or r-value. b) Overloaded binary operator+ to add an int value to the iterator to move the place the iterator points forward by the argument number of elements. c) Overloaded binary operator* to multiply the iterator by an int value to move the place the iterator points by a number of elements equal to the argument. d) Overloaded unary operator++ to move the place the iterator points forward by one element. e) Overloaded unary operator-- to move the place the iterator points backward by one element. f) Overloaded operator== and operator!= to determine whether two iterators point to the same element.