Viva prep · Real questions · Student experiences Enroll in Bootcamp
165 proctors 5262 questions

Lazy IITians Project Mentorship

Prepare in structure for the Project Mentorship.

level1_149 MAD1 Level 1 Aug 3, 2026
  1. 1
    GitHub check, ID verification, download/checksum/smoke test.
  2. 2
    Demonstrate the complete application and explain the project flow.
  3. 3
    Explain the project architecture and folder structure. Explain edge cases in your project.
  4. 4
    Explain models.py and the database schema.
  5. 5
    Explain relationships between models. One-to-One / One-to-Many. backref vs back_populates.
  6. 6
    What is ORM?
  7. 7
    Where is the blacklisted field stored? Explain database migration (if asked).
  8. 8
    Explain duplicate prevention (student applying twice, duplicate drives, etc.).
  9. 9
    Explain the login flow (without looking at the code).
  10. 10
    Explain the logout flow.
  11. 11
    Explain the search functionality (frontend + backend) without looking at the code.
  12. 12
    Explain any route and its backend logic.
  13. 13
    Explain how the blacklist functionality works. Explain how backend data is sent to the frontend.
  14. 14
    Difference between: render_template() and redirect(). url_for() and redirect().
  15. 15
    Authentication vs Authorization.
  16. 16
    Cookies vs Sessions. Where are sessions stored?
  17. 17
    What is a stateless application? How does Flask maintain object/application state?
  18. 18
    What is a REST API? REST API vs HTTP Methods.
  19. 19
    Explain HTTP methods (GET, POST, PUT, DELETE). Difference between GET, POST, PUT and DELETE.
  20. 20
    What are Jinja templates? What is Template Inheritance?
  21. 21
    How have you used Template Inheritance? Cell Padding vs Cell Spacing.
  22. 22
    What is Scalability? Horizontal vs Vertical Scaling.
  23. 23
    Add an Age field to the registration page and reflect it in the database/admin.
  24. 24
    Add an Address field to the Company model and display it.
  25. 25
    Add an Openings field to the Drive model and update both backend and frontend.
  26. 26
    Make corresponding database, route, and template changes for newly added fields.
level1_145 MAD1 Level 1 Aug 3, 2026
  1. 1
    Explain the login route implementation.
  2. 2
    Explain HTTP methods. Types of HTTP requests. Difference between PUT and POST.
  3. 3
    What happens if methods are not specified in @app.route()?
  4. 4
    Difference between redirect() and url_for().
  5. 5
    What are Flask-WTF forms?
  6. 6
    What is a REST API? What are APIs? Have you used any APIs in your project?
  7. 7
    Explain One-to-One and One-to-Many relationships. What is Cascade and how is it used?
  8. 8
    What is OOP? What is Inheritance? What are Python decorators?
  9. 9
    What is Jinja2 and how is it used?
  10. 10
    What is Horizontal Scaling and Vertical Scaling?
  11. 11
    Frontend: Change the navbar color (e.g., green → yellow/red). Backend: Change the Flask application port from 5000 to 8000.
Level1_144 MAD1 Level 1 Aug 3, 2026
  1. 1
    Demonstrate the complete project. Run the application simultaneously in two browsers (e.g., Admin and User).
  2. 2
    Explain the relationship types used in your models. What is ORM, and what is its biggest advantage?
  3. 3
    How would you support multiple roles for a user (e.g., Admin + Manager)?
  4. 4
    If a parking lot has multiple floors, how would you design the database? New table vs adding a floor column.
  5. 5
    What happens if you try to delete a parking lot that still has occupied spots?
  6. 6
    Explain how total cost is calculated.
  7. 7
    How would you improve your project's folder structure?
  8. 8
    Identify shortcomings in your project and explain how you would improve or implement them (may require live coding).
  9. 9
    How do you round a number up using math.ceil() (e.g., parking time less than one hour rounds up to one hour)?
  10. 10
    Make a UI change by bolding a column in a table.
level1_142 MAD1 Level 1 Aug 3, 2026
  1. 1
    Show the ID card.Explain the core features of your application.
  2. 2
    Demonstrate key functionalities: Student registration. Blacklisting a student. Editing the company profile. Editing the student profile.
  3. 3
    Explain MVC architecture.
  4. 4
    What is a REST API? Which frameworks have you used in the project?
  5. 5
    How many database tables are there, and what are they?
  6. 6
    Display a green page if the user count is even, and a red page if the user count is odd.
level1_139 MAD1 Level 1 Aug 3, 2026
  1. 1
    Show ID card, GitHub collaborator, download/checksum, run the project.
  2. 2
    Explain your project, its purpose, core features, and demonstrate the application.
  3. 3
    Explain the overall project/code structure.
  4. 4
    Explain MVC (draw it using Paint if asked).
  5. 5
    Explain how Models, Routes (Controllers), and Templates (Views) interact.
  6. 6
    Explain how data flows from the database to the HTML.
  7. 7
    Explain any route (e.g., create_trek) and the Admin login/dashboard flow.
  8. 8
    Explain CRUD operations and show where they are implemented.
  9. 9
    Explain your database schema and models.py.
  10. 10
    Explain relationships between tables. One-to-One One-to-Many Where these relationships are defined.
  11. 11
    Explain: Primary Key Unique Key ORM lazy commit() get_or_404()
  12. 12
    Explain HTTP Methods and HTTP Status Codes. Difference between GET and POST.
  13. 13
    Why is GET used where it is (e.g., login page)?
  14. 14
    Explain Jinja2.Explain Template Inheritance and where you've used it. Explain your HTML templates.
  15. 15
    Explain CSS used in your project. CSS Priority (Inline > Internal > External).
  16. 16
    Which CSS approach is preferred for large projects?
  17. 17
    What is Scaling?Horizontal vs Vertical Scaling.
  18. 18
    Add frontend and backend validation. Add an Age field to the registration page. Validate that 18 ≤ Age < 100.
Level1_138 MAD1 Level 1 Aug 3, 2026
  1. 1
    Demonstrate the complete project and explain its functionalities. Explain the complete code flow.
  2. 2
    Explain the controller (CRUD routes) flow. Explain where CRUD operations are used in your project.
  3. 3
    Explain the database schema and relationships between models. Live Coding: Add a Phone Number field to the registration page and ensure it is stored in the database.
  4. 4
    Explain models.py.
  5. 5
    Explain Jinja2 functionality used in your templates.
  6. 6
    What are the benefits of Jinja2? What is Jinja2 template inheritance?
  7. 7
    What are Flask Blueprints?
  8. 8
    What is a REST API? Difference between API and Controller.
  9. 9
    Which RESTful methods have you used? Explain HTTP methods and their functionality.
  10. 10
    Why is POST used in the edit route instead of PUT? Difference between POST and PUT.
  11. 11
    Make a CSS change in the Admin Dashboard. Explain the CSS hierarchy and different types of CSS (Inline, Internal, External).
level_134 MAD1 Level 1 Aug 3, 2026
  1. 1
    Demonstrate the complete application (User, Staff, and Admin panels). Explain your models.py. Explain the Admin routes and other routes used in the project. Practical coding questions directly from your own code. Make a small query-based change in the dashboard.
  2. 2
    Explain CRUD operations. Primary Key vs Foreign Key.
  3. 3
    Why is the User model used? Explain backref.
  4. 4
    What is ORM? Explain SQLAlchemy and why ORM is useful.
  5. 5
    What does render_template() do? What is the purpose of __init__.py?
  6. 6
    HTTP Methods (GET, POST, etc.) and their use cases.Request–Response model.
  7. 7
    JSON. DOM. AJAX. Partial Refresh vs Full Refresh.
level1_123 MAD1 Level 1 Aug 3, 2026
  1. 1
    Show your ID card. Show your GitHub repository and verify the MAD-1 collaborator. Download the project from the portal, extract it, and run it.
  2. 2
    Show your project code. Explain the complete login page/code flow. Explain how data is fetched from the database.
  3. 3
    Write a Python decorator. Write a Jinja2 for loop in Notepad.
  4. 4
    Fetch attributes from the database. Explain backref and its purpose in SQLAlchemy relationships.
Created for educational purposes only. Questions are based on students' personal experiences and may not reflect actual exam content.