The ____________________ statement repeats a statement or series of statements as long as a given conditional expression evaluates to TRUE.
Fill in the blank(s) with the appropriate word(s).
while
You might also like to view...
Research any of the following topics, using the Web. Write a short paper (2-5 pages) explaining the basics to a reader assumed to be unfamiliar with the subject. Set up a demonstration.
a. Predictive typing, also called word completion. b. Voice recognition. c. Screen narration in relation to page layout.
To delete a row or column, select the row or column, click Table on the Menu bar, point to ____, then click Row or Column.
A. Delete B. Erase C. Trash D. None of the above
Given the following declaration: int j;int sum;double sale[10][7]; which of the following correctly finds the sum of the elements of the fourth column of sale?
A. sum = 0; for(j = 0; j < 7; j++) sum = sum + sale[j][3]; B. sum = 0; for(j = 0; j < 7; j++) sum = sum + sale[j][4]; C. sum = 0; for(j = 0; j < 10; j++) sum = sum + sale[j][4]; D. sum = 0; for(j = 0; j < 10; j++) sum = sum + sale[j][3];
The ____ form object accepts entries containing one or more lines of text.
A. Text Area B. Select C. Text D. Fieldset