A(n) ____ is a unit of measurement that is relative to the size of the font.
A. ex
B. ep
C. en
D. em
Answer: D
You might also like to view...
What was used to help structure the digitized Oxford English Dictionary?
a. bytes b. sets c. ASCII d. tags
All SmartArt graphic shapes will enlarge proportionally when you adjust the graphic's height and width._________________________.
Answer the following statement true (T) or false (F)
The __________ cycle is used by the CPU to execute instructions in a program.
a. decode - fetch - execute b. decode - execute - fetch c. fetch - decode - execute d. execute - fetch - decode
if the following records are input, what is the value of NAME-ACCUM after the instructions corresponding to the pseudocode are executed?
Given the following pseudocode: ``` Start FINAL-ACCUM = 0 NAME-ACCUM = 0 Read NAME, AMT SAVE-NAME = NAME DOWHILE not EOF IF NAME ? SAVE-NAME THEN Write NAME-ACCUM FINAL-ACCUM = FINAL-ACCUM + NAME-ACCUM SAVE-NAME = NAME (ELSE) ENDIF Write NAME, AMT NAME-ACCUM = NAME-ACCUM + AMT Read NAME, AMT ENDDO Stop ``` John 20.00 John 30.00 Mary 10.00 Sue 50.00 a) 10 b) 50 c) 60 d) 110