Skip to main content

Understanding Questions

Questions are the building blocks of your quiz. QuizOxide provides a powerful editor and flexible logic to handle everything from simple multiple-choice to complex math problems.

The Editor

We use a Rich Text Editor for all question text and option values. This allows you to format text, add lists, and structure your content exactly how you want it.

➗ Math & Equations

For scientific or mathematical questions, you can use LaTeX. This is a standard system used globally for writing complex formulas.

  • What is LaTeX? It's a way to write math using plain text. Learn more about LaTeX here.
  • Example: Typing $E=mc^2$ renders as a proper equation.

🖼️ Images & Video

Current Limitation

We do not currently host image or video uploads.

To include media in your questions:

  1. Upload your image or video to a hosting service (like Imgur, YouTube, or Vimeo).
  2. Paste the direct link into the question or option value.
  3. The feature to upload files directly to QuizOxide is on our roadmap for future updates.

Logic: Labels vs. Values

When creating structured questions (like Multiple Choice or Matching), you will see fields for Labels and Values. It is crucial to understand the difference:

  • 🏷️ Label: Think of this as a short variable or ID (e.g., A, B, 1, 2).
    • Function: The system uses only the Label to track the correct answer.
    • Tip: Keep it short and simple.
  • 📝 Value: This is what the participant actually sees (e.g., "Paris", "42", "The mitochondria is the powerhouse of the cell").
    • Function: Display content. Can contain rich text, links, or LaTeX.

How Evaluation Works: For most structured questions (Multiple Choice, Ordering, Matching, etc.), the system compares Labels only. The actual text (Value) doesn't matter for grading.

  • Exceptions: True/False, Short Answer, and Essay do not use Labels in this way; they check the answer value directly.

Example

Imagine a Multiple Choice question: "What is 2 + 2?"

LabelValueCorrect?
A3
B4
C5

System Grading: The correct answer is set to "B".

  • If the user clicks "4", the system sees they selected Label B.
  • Since B == B, they get the points.
  • You could change the Value of B to "Four" or "IV", and the answer key remains "B".

Evaluation Types

Different question types are graded differently.

✅ Auto-Evaluated

These questions are graded instantly by the system.

  • Structured Questions:
    • Multiple Choice, Multiple Select, True/False: Matches the selected Label(s).
    • Ordering, Matching Pairs: Checks if the sequence or pairs of Labels match the key.
  • Text Entry:
    • Short Answer: The user's input must exactly match your answer key. (Case-insensitive).
    • Fill in the Blank: Checks specific keywords in specific slots.

👨‍🏫 Manual Evaluation

  • Essay:
    • These questions require human review.
    • By default, they receive a score of 0 until an instructor grades them.
    • Future Update: We are exploring AI/LLM integration to provide automatic preliminary grading for essays.

Question Types Summary

TypeDescriptionEvaluation
Multiple ChoicePick one correct option from a list.Auto (Label)
Multiple SelectPick all correct options from a list.Auto (Label)
True/FalseA simple binary choice.Auto (Value)
OrderingA list of items must be dragged into the correct sequence.Auto (Label Sequence)
Matching PairsMatch items on the left with items on the right.Auto (Label Pairs)
Fill BlankA sentence with missing words.Auto (Text Match)
Short AnswerA direct question requiring a specific word or phrase.Auto (Exact Text Match)
EssayLong-form writing answer.Manual