When an outline level is ________, all subordinate headings and body text are hidden
A) bold
B) grayed out
C) collapsed
D) expanded
C
You might also like to view...
Use the following statements to complete the code in Figure 12.32 to animate an image called water-balloon.png falling down.
a.
b. var myCanvas = document.getElementById("gameCanvas");
var myContext = myCanvas.getContext("2d");
c. var balloon = new Image();
balloon.src = "images/water-balloon.png";
d. var y = 0;
e. main();
f. balloon.onload = function () {
startGame();
};
g. updateGame();
h. window.requestAnimationFrame(drawGame);
i. y += 2;
j. window.setTimeout(updateGame, 33);
k. myContext.clearRect(0, 0, myCanvas.width, myCanvas.height);
l. myContext.drawImage(balloon, 300, y);
m. window.requestAnimationFrame(drawGame);
Which of the following contradicts the notion of structured programming?
a) if b) for/in c) goto d) while