Quiz - 7
The ____ statement in C is used to load libraries that hold the commands and functions used in your program. a. #include b. package c. use d. #import
A. #include
In HTML, each tag has a matching closing tag that's written with a(n) ____ added. a. forward slash (/) b. backward slash (\) c. bang (!) d. ampersand (&)
A. Forward slash /
The logical operator in C that is evaluated as true if both sides of the operator are true is ____. a. = b. && c. || d. ==
B. &&
____ is the act of performing a task over and over. a. Branching b. Looping c. Testing d. Remembering
B. Looping
Bugs are worse than syntax errors because a program can run successfully with a bug, but the output might be incorrect or inconsistent. True False
True