{% extends 'base.html' %} {% block title %}Step 3: Your Question Paper - AutoExamGen{% endblock %} {% block head %} {% endblock %} {% block content %}
1
2
3

Your Question Paper is Ready!

Review your generated question paper below

{{ config.short_questions + config.long_questions + config.mcq_questions }} Total Questions
{{ total_marks }} Total Marks
{{ config.short_questions }} Short Questions
{{ config.long_questions }} Long Questions
{{ config.mcq_questions }} MCQ Questions
{{ display_duration }} Time (min)

{{ config.exam_name if config.exam_name else 'EXAMINATION QUESTION PAPER' }}

Subject: {{ config.subject_name if config.subject_name else '[Subject Name]' }}

Date: {{ exam_date }}     Time: {{ display_duration }} minutes     Total Marks: {{ total_marks }}


Instructions:

  • Answer all questions
  • Write clearly and legibly
  • Manage your time effectively
  • {% if config.mcq_questions > 0 %}
  • For MCQ questions, choose the best answer
  • {% endif %}
{% if config.mcq_questions > 0 and question_paper.mcq_questions %}
SECTION A: MULTIPLE CHOICE QUESTIONS (1 mark each)
{% for question in question_paper.mcq_questions %}
1 mark {{ loop.index }}. {{ question.question if question.question else question }} {% if question.options %}
{% for option in question.options %}
{{ ['A', 'B', 'C', 'D'][loop.index0] }}) {{ option }}
{% endfor %}
{% else %}
A) [Option A]
B) [Option B]
C) [Option C]
D) [Option D]
{% endif %}
{% endfor %} {% endif %} {% if config.short_questions > 0 and question_paper.short_questions %}
SECTION B: SHORT ANSWER QUESTIONS ({{ config.short_marks }} marks each)
{% for item in question_paper.short_questions %} {% if config.short_or and (item.a or item.b) %}
{{ config.short_marks }} marks {{ loop.index }}.
{{ (item.a.question if item.a.question else item.a) if item.a else '' }}
{% if item.b %}
OR
{{ (item.b.question if item.b.question else item.b) if item.b else '' }}
{% endif %}
{% else %}
{{ config.short_marks }} marks {{ loop.index }}. {{ item.question if item.question else item }}
{% endif %} {% endfor %} {% endif %} {% if config.long_questions > 0 and question_paper.long_questions %}
SECTION C: LONG ANSWER QUESTIONS ({{ config.long_marks }} marks each)
{% if config.long_attempt %}
Attempt any {{ config.long_attempt }} out of {{ config.long_questions }} questions.
{% endif %} {% for question in question_paper.long_questions %}
{{ config.long_marks }} marks {{ loop.index }}. {{ question.question if question.question else question }}
{% endfor %} {% endif %}

*** END OF QUESTION PAPER ***

Generated on {{ exam_date }} using AI Question Generator

Next Steps
Print
Use the Print button to get a clean, formatted printout of your question paper.
Download
Download as HTML file to save or share your question paper digitally.
Customize
Edit the subject name, instructions, or questions as needed before printing.
{% endblock %} {% block scripts %} {% endblock %}