Int[] RotateAnswers(Int inQuesIdx)
Description
This function display the answers in cyclic rotation order.
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int | The question index to rotate |
Return Type
Int []
Examples
Question index 4 is a single choice question with these answers in this given order: A, B, C, D, E.
RotateAnswers(QRef(4)) will display the answers in a possible rotation order, such as: D, E, A, B, C
Comments
Please sign in to leave a comment.