Viva prep · Real questions · Student experiences Enroll in Bootcamp

Proctor workspace

Proctor Level1_7

Share your experience Add your viva experience here
4 Questions
1 Sets
0 Topics
0 Reviews
Tips for this examiner: He's calm & patient but deep dive to the code and ask conceptual questions rather than general theory. Focus on HTTPS method, routes & jinja template writing in notepad, he may ask some random codes for basic understanding.

Student reviews

No student reviews for this proctor yet.

Approved viva sets

  1. 1
    It was over in around 15 to 20 mins.... asked for id github, checeksum or portal download (i chose portal download)
    Times asked 1
    Official solution

    SimpleExaminer portal wala submitted ZIP chahta hai. Local extra changes mat dikhana.

    Suggested flow1) Portal ZIP download
    2) Extract
    3) venv + pip install -r requirements.txt
    4) flask run / python app.py

  2. 2
    Asked to give demo, started with home then admin, staff then when I was showing update profile option then he asked me to show the template for this section then askjed to show the route and how it works... while i was explaining asked to explain get & post (this he had asked in other vivas as well)....
    Times asked 1
    Official solution

    SimpleGET data read/show karta hai (idempotent). POST create/submit karta hai (form).

    Example

    @app.route('/login', methods=['GET', 'POST'])
    def login():
        if request.method == 'POST':
            # validate + session
            ...
        return render_template('login.html')
  3. 3
    After taht he asked me to write code for returning first 3 values, i might messed here out of nervousness then said leave this and write jinja template for returning any 3 values (i wrote for trek details)
    Times asked 1
    Official solution

    SimpleJinja for loop list render karta hai. loop.index, else branch empty list pe.

    Example

    {% for u in users %}
      <tr><td>{{ loop.index }}</td><td>{{ u.email }}</td></tr>
    {% endfor %}
  4. 4
    Then he said okay its done we can wrap up the viva here..... i asked if i made any mistake bit till rhen he ended the meeting....
    Times asked 1
    Official solution

    SimpleViva wrap-up hai. Short thanks + confirm submission ZIP latest hai.

Advice: He's calm & patient but deep dive to the code and ask conceptual questions rather than general theory. Focus on HTTPS method, routes & jinja template writing in notepad, he may ask some random codes for basic understanding.
Created for educational purposes only. Questions are based on students' personal experiences and may not reflect actual exam content.