Look at this portion of the Social Media Policy for Widget Corp. Which text features does this section contain? Select three responses.
a. a numbered list
b. bolded words
c. a roman numeral
d. a sidebar
Answer: a. a numbered list
b. bolded words
c. a roman numeral
You might also like to view...
Which of the following correctly declares an enumerated data type named student?
A) enum student { Bill, Tom, Mary }; B) enum student { "Bill", "Tom", "Mary" }; C) int Bill = 1, Tom = 2, Mary = 3; enum student { 1, 2, 3 }; D) Any of the above 3 methods will work. E) None of the above 3 methods will work.
Answer the following statements true (T) or false (F)
1. In a window that is 640px wide by 480px high, the top right X, Y coordinates would be (0, 480). 2. To create a circle, you need to specify only the X and Y coordinates of the center point. 3. A polygon, created by the Polygon class is, by default, filled with the color black. 4. The following statement will draw the string "Welcome!" starting at the top left corner of the screen. ``` Text welcomeText = new Text(0, 0, "Welcome!"); ``` 5. To make a node half its original size, you pass the setScaleX method the value 2 and pass the setScaleY method the value 0.5.
Often, the key to finding the correct record on a traditional file is the __________.
a. disk directory b. index c. relative record number d. none of the above
The sum of squares of the first two even integers is ____.
A. 5 B. 10 C. 15 D. 20