Section Ordering
Select the order in which the exam sections are to be administered.
NOTE: You have 1 minute to make your selection. If you do not make your selection within 1 minute, the first
option listed will be selected and you will view the exam in the following order: Analytical Writing
Assessment, Integrated Reasoning, Quantitative, Verbal.
Once you select your section order, you must view ALL questions in each section, in the order you have
selected, before moving on to the next section. You will NOT be able to return to this screen.
{ExaminationOrder.map((row, index) => {
return
{
flow.setSetting({ order: row.value, orderIndex: index });
}}>
{orderIndex === index &&
}
{row.label}
{row.list.map((r, i) => {
return
{i + 1}.{r.label}
;
})}
;
})}
{paper.finishTimes > 0 &&
flow.setSetting({ disorder: !disorder })} /> 题目选项乱序显示
}
Click{' '}
flow.start({ disorder: paper.finishTimes > 0 ? disorder : false, order: order.filter(row => row) })}>
Next
{' '}
button to start the exam. You will begin the GMAT exam on the next screen.{' '}
);
}
renderExaminationStartDefault() {
const { paper, flow, setting } = this.props;
const { disorder = true, order = [], orderIndex } = setting;
const tmp = order.filter(row => row);
return (