
![]() |
Welcome Guest ( Log In | Register ) ![]() |
![]() ![]() |
bobf |
Posted: Aug 20 2008, 08:54 PM
|
![]() |
ExamView has a reserved variable name called "answer". For multiple choice questions, you can dynamically change the value of "answer" to "A", "B", "C", "D", etc. in order to change the answer to the question.
I've attached a bank that shows how to combine a sorted list with the "answer" in response to a question from May 1st posted in the ExamView Dynamic Content and Algorithms section of the forum. Attached File ( Number of downloads: 4813 ) ![]() |
DroopyPawn |
Posted: Sep 5 2009, 10:54 AM
|
![]() |
Knowing about this several years ago sure would have made some of my programming easier.
|
yu1522 |
Posted: Oct 10 2009, 03:24 PM
|
![]() |
Can you tell me what the condition (n1 % 2) + (n2 % 2) + (n3 % 2) + (n4 % 2) = 1
means?? Specifically, I don't know what the % means. |
McGarrett |
Posted: Dec 28 2009, 03:47 PM
|
![]() |
% means modulus, remainder after division.
35 % 4 is the same as 35 MOD 4. |
![]() ![]() |