A multiple-choice question presents mutually exclusive choices, with only one correct response available. To write a similar question with more than one correct answer, see section 8.3, Multiple-Select Questions.
To write a multiple-choice question, choose Create from the Questions menu and perform the following steps:
The question editor contains a soft-wrap feature, for your convenience. WebAssign will not read any text moved to another line without a carriage return as starting a separate line. This allows you to enter longer answers or distracters, while easily viewing the entire entry.
The correct answer and the distracters for a multiple choice question each need to occupy a single line in the answer field. Do not enter any line returns within an answer.

The recommended procedure for developing a question is to click Redisplay or Test/Preview, check that the question redisplays properly, and then click Save. Always clickRedisplay or Test/Preview right before you click Save.
WebAssign scrambles the order of the choices in a multiple-choice question by default. If you do not want WebAssign to randomize the placement of multiple-choice options, you need to tell WebAssign this. When creating this type of multiple-choice question, enter the choices in the order you wish them to appear. Then you will tell WebAssign which answer is correct by setting the variable $ORDERED equal to the location of the correct answer in your list of choices. For example, if the third choice in your list is correct, you will set $ORDERED = 3.
To write an ordered multiple-choice question with the third answer as the correct choice, choose Create from the Questions menu and perform the following steps:
<eqn $ORDERED = 3;"">
followed by the first distracter.
The question editor contains a soft-wrap feature, for your convenience. WebAssign will not read any text moved to another line without a carriage return as starting a separate line. This allows you to enter longer answers or distracters, while easily viewing the entire entry.
The correct answer and the distracters for a multiple choice question each need to occupy a single line in the answer field. Do not enter any line returns within an answer.

The recommended procedure for developing a question is to click Redisplay or Test/Preview, check that the question redisplays properly, and then click Save. Always clickRedisplay or Test/Preview right before you click Save.
A true or false question is a simple form of a multiple-choice question. Just enter the correct answer, True or False, first, followed by the incorrect answer. It is also possible to keep the choices in the same order by entering either of the following expressions on the first line of the Answer field:
<eqn $ORDERED = 1;"">
<eqn $ORDERED = 2;"">
where the value of the $ORDERED variable is the position of the correct answer and the choices are not rearranged in the student view of the question. (See section 8.2.2 for more information about ordered multiple-choice.)

Occasionally it is desirable to have a multiple-choice question for matching type questions in which the choices are in a pulldown menu. This allows you to write questions that are more compact. In fact, you can have the pulldown menu in the middle of a sentence, if you like.
Note: You cannot use HTML, images, or other special characters in a pulldown menu. Browsers will not display them properly.
To write a multiple-choice question with a pulldown menu, choose Create from the Questions menu and perform the following steps:
<eqn $PULLDOWN = 1;$ORDERED = 3;$Select_Option = "Use pulldown menu";"">
This can be handy, for example, if you are using a pulldown menu in the middle of a sentence, with choices of < and >, and do not want the box to be very large. In this case, use something similar to “—“ or “??” as the initial text to be displayed.
The eqn tags above take up more than one line, but there should never be a line return in an eqn tag in the Answer field. The text will wrap, but never enter a line return.

The recommended procedure for developing a question is to click Redisplay or Test/Preview, check that the question redisplays properly, and then click Save. Always clickRedisplay or Test/Preview right before you click Save.
When you need to specify the position of multiple-choice radio buttons so you can include an image or footnote below the choices, use $SET_POSITION.
Set the $SET_POSITION flag to 1 in the Answer field at the start of the set of answers for which you need to specify the position. In the Question field, insert an answer box <_> where you want these radio buttons to appear. In the following example, the author wanted the image below the choices. Without the $SET_POSITION flag, the image would have been between the question and the choices.
