Int[] RotateTopics(Int inQuesIdx)
Description
This function display the answers in a 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 topics in this given order: A, B, C, D, E.
RotateTopics(QRef(4)) will display the topics in a possible rotation order, such as: D, E, A, B, C
Comments
Please sign in to leave a comment.