+ 1
How to make MCQ quiz?????
i want to make a MCQ quiz in which there are four option of one question and after clicking the submit button the result will display in a new window.......... please suggest me the code
1 Antwort
+ 12
I won't tell you the code but I will give you an idea.
Create a form with the question, 4 radio buttons for options and a submit button. On the submission of the form, check the user input in the radio button using JS. If it matches the right answer, output correct. Else, output false.