Case 3-2Kamilla is putting together a survey to post on her school's Web site. The topic of the survey is the types of lunches students would like to see served in the cafeteria.The survey asks students to write in their favorite lunch that is served in the cafeteria. For this question, Kamilla would use a ____.

A. text box
B. drop-down list
C. radio button
D. check box


Answer: A

Computer Science & Information Technology

You might also like to view...

in the Declarations section of the Code editor and the array is filled with data for the 193 member nations of the UN. What will be displayed in the DataGridView control when the following code is executed?

``` Dim query = From country In nations Where (country.continent = "Europe') And country.name.StartsWith("S") Let countryUC = country.name.ToUpper Let pop = (1000000 * country.population).ToString("N0") Let area = (country.area).ToString('N0') Order By countryUC Ascending Select countryUC, pop, area dgvNations.DataSource = query.ToList dgvNations.CurrentCell = Nothing ``` Suppose a structure and an array are created with the code ``` Structure Nation Dim Di m Di m Di m name As String continent As String population As Double 'in millions area As Double 'in square miles End Structure Dim nations(192) As Nation ```

Computer Science & Information Technology

Which of the following is a valid XML tag?

a. b. c. d.

Computer Science & Information Technology

To simplify entering ranges in formulas you can use

A) a cell's specific location. B) a cells relative location. C) range names. D) both an absolute and a relative cell reference.

Computer Science & Information Technology

When using a nested loop, what should always be thought of as the all-encompassing loop?

A. inner loop B. outer loop C. while loop D. for loop

Computer Science & Information Technology