What are the three primary colors?
A. red, black, and white
B. green, blue, and red
C. yellow, green, and blue
D. blue, red, and black
Answer: B
You might also like to view...
There needs to be a current ____________________ of each of the elements of the organization that have been placed under the incident management function.
Fill in the blank(s) with the appropriate word(s).
What are the arguments and parameters in the code snipped?
``` 1. var shirt = "blue"; 2. var pants = "gray"; 3. var clothes = wearIt(shirt, pants); 4. function wearIt( x, y) 5. { 6. var myOutfit = "Today I will wear a " + pants + ? " shirt and " + shirt + " pants."; 7. return myOutfit; 8. } 9. document.write(clothes); ``` a. arguments: x, y parameters: shirt, pants b. arguments: shirt, pants parameters: x, y c. arguments: shirt, x parameters: pants, y d. arguments: shirt, y parameters: pants, x
Some operating systems include video and audio editing software.
Answer the following statement true (T) or false (F)
You can use the ____ to open a sequential access file for output.
A. CreateText method B. StreamReader object C. StreamWriter object D. AppendText method