The ________ tool changes the case of the selected text to uppercase, lowercase, sentence case, or title case
A) Align Text B) Character Spacing C) Text Direction D) Change Case
D
You might also like to view...
A Bluetooth device needs to be paired with a mobile device before it can be used
Indicate whether the statement is true or false
Answer the following statements true (T) or false (F)
1. A pointer is a variable that holds the address of some other location in memory. 2. Pointer variables are just memory addresses and can be assigned to one another without regard to type. 3. 3. The declaration below declares three pointer variables of type pointer to double that is, a pointer of type (double*) double* p1, p2, p3; 4. A pointer is an address, an address is an integer, but a pointer is not an integer. 5. 5. You can get a pointer value to initialize a pointer variable from an object of an appropriate type with the “address-of” operator, &.