-
1
which database have u usedTimes asked 1Official solution
SimpleSQLite file-based DB — setup easy, MAD1 ke liye perfect. Production heavy traffic pe Postgres better.
Example
SQLALCHEMY_DATABASE_URI = 'sqlite:///app.db'Community answers
No replies yet
No community answers yet
Open My solution to be the first to share yours.
My solution
Not submitted yet
-
2
what is relational databaseTimes asked 2Official solution
SimpleRelational DB tables + rows + columns, relations FK se. SQL se query. SQLite/Postgres examples.
Example
users(id, email) bookings(id, user_id FK → users.id)Viva tipVs NoSQL: fixed schema + joins strong; documents flexible but joins weak.
Community answers
No replies yet
No community answers yet
Open My solution to be the first to share yours.
My solution
Not submitted yet
-
3
what is nosqlTimes asked 1Official solution
SimpleNoSQL = non-relational store (documents/key-value). Flexible schema, joins weak. MongoDB/Redis examples. MAD1 usually SQLite relational.
Community answers
No replies yet
No community answers yet
Open My solution to be the first to share yours.
My solution
Not submitted yet
-
4
He joined 5 min late, yet the viva ending within 20 minsTimes asked 2Official solution
SimpleJOIN related tables ek result mein. Inner = match only; left = left side sab + match.
Example
db.session.query(Booking, User).join(User).filter(User.id == uid).all()Community answers
No replies yet
No community answers yet
Open My solution to be the first to share yours.
My solution
Not submitted yet
-
5
No coding questions askedTimes asked 4Official solution
SimpleLive coding: notepad/editor mein chhota Flask route / Jinja loop / model field. Calm raho, run karke dikhao.
Community answers
No replies yet
No community answers yet
Open My solution to be the first to share yours.
My solution
Not submitted yet