Viva prep · Real questions · Student experiences Enroll in Bootcamp

Proctor workspace

Proctor VIVA14

Share your experience Add your viva experience here
2 Questions
2 Sets
0 Topics
0 Reviews
Tips for this examiner: He is cool good proctor

Student reviews

No student reviews for this proctor yet.

Approved viva sets

  1. 1
    Authorization and authentication where token is stored asked me to find the token
    Times asked 2
Advice: He is cool good proctor
  1. 1
    Authorization and authentication where token is stored asked me to find the token
    Times asked 2
    Official solution

    SimpleAuthentication: tu kaun hai? (login). Authorization: tujhe permission hai? (role check).

    Example

    # auth
    if check_password_hash(user.password, pwd):
        session['user_id'] = user.id
    
    # authz
    if user.role != 'admin':
        abort(403)
Advice: He is cool good proctor
Created for educational purposes only. Questions are based on students' personal experiences and may not reflect actual exam content.