To insert a shape, click a shape in the Shapes ____.
A. library
B. archive
C. clipboard
D. gallery
Answer: D
You might also like to view...
Answer the following statements true (T) or false (F)
1. In 1994, Bill Gates founded the W3C. 2. XML is a subset of HTML used to format data. 3. MathML is one of many markup languages created with XML 4. HTML is a W3C Recommendation. 5. The W3C has three hosts.
The class ___________ converts a digital picture to an icon for us in an applet.
(a) ImageIcon (b) JAppletIcon (c) IconImage (d) IconJApplet
What is the output for the third statement in the main method?
``` public class Foo { static int i = 0; static int j = 0; public static void main(String[] args) { int i = 2; int k = 3; { int j = 3; System.out.println("i + j is " + i + j); } k = i + j; System.out.println("k is " + k); System.out.println("j is " + j); } } ``` a. j is 0 b. j is 1 c. j is 2 d. j is 3
A string must contain at least one character.
Answer the following statement true (T) or false (F)