Match the following terms to their meanings:
I. Microblog post
II. Hashtag
III. Conversion view
IV. OneNote Online
V. PowerPoint Online
A. Short text messages that you type to inform others of your activities, opinions, or ideas
B. Saves notes in the form of text, pictures, and links in notebooks
C. Enables you to see your responses as a partial message
D. A common social networking tool
E. Designs a presentation with text, illustrations, images, SmartArt, transitions, and animations
A, D, C, B, E
You might also like to view...
Each type of data has special ____________________ characteristics that help to identify its purpose.
Fill in the blank(s) with the appropriate word(s).
Analyze the following code:
``` int i = 3434; double d = 3434; System.out.printf("%5.1f %5.1f", i, d); ``` a. The code compiles and runs fine to display 3434.0 3434.0. b. The code compiles and runs fine to display 3434 3434.0. c. i is an integer, but the format specifier %5.1f specifies a format for double value. The code has an error. Key:c i is an integer, but the format specifier %5.1f specifies a format for double value. Type does not match. So, the correct answer is C.
A(n) ________ is a variable or constant that is needed to produce output for a function in a calculated field
A) expression B) formula C) function D) argument
A conversion specification consists of a percent sign (%), a conversion code, and up to four optional modifiers.
Answer the following statement true (T) or false (F)