Int[] RandomizeTopics(Int32 inQuesIdx)
Description
Display the topics of question inQuesIdx in a randomized order.
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int32 | Question index |
Return Type
Int32 []
Overloads
List of overloads for this function
Int[] RandomizeTopics(Int32 inQuesIdx, Int[] inRandomArray)
Parameter | Type | Description |
---|---|---|
inQuesIdx | Int32 | Target question |
inRandomArray | Int[] | Integers Array is with size equals to the answers amount in inQuesIdx; each cell contains different answer index within inQuesIdx answers indexes |
Examples
RandomizeTopics(QRef(3)), will display the topics of question index 3 in a randomized order on screen.
RandomizeTopics(QRef(3), randomArray), will display the Topics of question index 3 in a randomized order on screen, according to the order determined in randomArray
Comments
Please sign in to leave a comment.