What considerations are necessary when questionnaires are Web based?

What will be an ideal response?

When designing Web-based questionnaires, there must be ample space for open-ended questions and the appropriate use of check boxes, radio buttons, and drop-down menus. It is important to have both Submit and Clear buttons. The Web survey should provide a password system to help ensure confidentiality.

Computer Science & Information Technology

You might also like to view...

You can convert a range of cells to an Excel ________ to analyze a group of related data

Fill in the blank(s) with correct word

Computer Science & Information Technology

Label the elements of a 3-by-5 two-dimensional array sales to indicate the order in which they’re set to zero by the following program segment:

``` for (size_t row{0}; row < sales.size(); ++row) { for (size_t column{0}; column < sales[row].size(); ++column) { sales[row][column] = 0; } } ```

Computer Science & Information Technology