In SharePoint, ________ lists display columns as a questionnaire or poll rather than a list of columns and rows
Fill in the blank(s) with correct word
survey
You might also like to view...
Assume that an integer array named intValues contains intNUM elements. Which of the following code segments most efficiently finds the largest element in the array and displays it in a label named lblMaxValue? Assume that values have already been inserted into the array.
a. ```For intIndex = 0 To intNUM – 1 If (intValues(intIndex) > CInt(txtMax.Text)) Then lblMaxValue.Text = intValues(intIndex).ToString End If Next intIndex ``` b. ```intMax = intValues(0) For intIndex = 1 to intValues.length - 1 If intValues(intIndex) > intMax Then intMax = intValues(intIndex) End If Next lblMaxValue.text = intMax.ToString ``` c. ```For intIndex = 0 To intNUM If intValues(intIndex) > intMax Then intValues(intIndex) = intMax End If Next lblMaxValue.Text = intMax.ToString ``` d. ```intMax = intValues(0) For intIndex = 1 To intValues.length If intValues(intIndex) > intMax) Then intMax = intValues(intIndex) lblMaxValue.Text = intMax.ToString End If Next ```
The gray area in the accompanying figure, which contains the dates Nov 16, ‘14, Nov 25, ‘14, and Nov 30, ‘14, is the __________ scale.
A. minor B. major C. fixed D. flexible
Which of the following from the window above is a JButton?
A. Calculate B. Exit C. Both Calculate and Exit D. Perimeter
When creating a flowchart or pseudocode representation of a task, what type of structure is one in which one step follows another unconditionally?
A. single-decision B. dual-decision C. branched D. sequence