Which of the following components allow multiple selections?

Options
- Non-exclusive Checkboxes
- Radio buttons
- Choice
- Text Boxes


CORRECT ANSWER : Non-exclusive Checkboxes

Discussion Board
non-exclusive checkboxes

Checkboxes are used to provide optional features which the user may or may not want. They have two states: checked or unchecked. A group of checkboxes can be either exclusive or nonexclusive. An exclusive group of checkboxes means that only one among that group can be checked at any time. These are also known as "radio buttons". For nonexclusive checkboxes, any one of them can be selected.

The use non-exclusive checkboxes allow the user to do the following:

1) Select multiple checkboxes
2) Checkbox() - constructs an empty checkbox that is unchecked.
3) Checkbox(String label) - constructs a checkbox that is unchecked, with the string specified as its label.
4) Checkbox(String label, CheckboxGroup group, boolean state) - constructs a checkbox that is either checked or unchecked depending on whether the value of the boolean state argument is true or false.

Rohit Sharma 09-30-2014 04:39 PM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement