Case-Based Critical Thinking QuestionsCase 9-1At the beginning of the academic year, Maxwell was asked to create an HTML form for his tennis coach, Mr. McEnroe, so that he can collect information about the school's tennis team players.Mr. McEnroe would like to collect the name of each player's hometown. Which of the following form controls should Maxwell use?

A. text area
B. text box
C. radio button
D. check box


Answer: B

Computer Science & Information Technology

You might also like to view...

Show the output of the following code:

``` #include using namespace std; void increase(int x[], int size) { for (int i = 0; i < size; i++) x[i] ++; } void increase(int y) { y++; } int main() { int x[] = { 1, 2, 3, 4, 5 }; increase(x, 5); int y[] = { 1, 2, 3, 4, 5 }; increase(y[0]); cout << x[0] << " " << y[0]; } ``` a. 2 2 b. 1 1 c. 1 2 d. 0 0 e. 2 1

Computer Science & Information Technology

The speed of a CPU depends primarily on ________

A) its memory and clock speed B) its algorithm speed and clock speed C) the amount of memory and storage D) its word size and clock speed

Computer Science & Information Technology

Virtualization occurs when a ________________ running specialized software creates environments within unique single files that _______________ other computers.

A. single computer; manages B. database; manages C. single computer; replicates D. database; replicates

Computer Science & Information Technology

The Calendar control has a number of properties including the ____________ property that is used to pick the month, day, and year for display.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology