When you first insert an image into a document, which of the following is TRUE?
A) It always comes in at the top-right corner.
B) It comes in at the bottom center of the document.
C) It comes in a predefined size.
D) It always comes in at 2 inches by 2 inches.
C
You might also like to view...
The std::endl stream manipulator________.
a. inputs a newline. b. flosses the output buffer. c. outputs a newline and flushes the output buffer. d. terminates the program.
What mistake prevents the following class declaration from functioning properly as an abstract class?
class Shape { public: virtual double print() const; double area() const {return base * height;} private: double base; double height; }; a. There are no pure virtual functions. b. There is a non-virtual function. c. private variables are being accessed by a public function. d. Nothing, it functions fine as an abstract class.
Match the following functions with their appropriate purpose:
I. Len A. Select a specific number of characters from a text string from II. InStr left to right III. Left B. Select a specific number of characters from any specific point IV. Mid in the text string C. Count the number of characters up to and including a target symbol D. Count the total numbers of characters contained in a field
Create a(n) _____ data type when you want to store a link to a webpage or file in a field.
Fill in the blank(s) with the appropriate word(s).