What type of database is SQLite commonly classified as?
What type of database is SQLite commonly classified as for its storage and use on devices like phones and laptops?
- Relational Database
- Distributed Database
- NoSQL Database
- Cloud Database
- Object-Oriented Database
Which of the following best describes how SQLite stores its data?
Which of the following best describes how SQLite stores its data?
- In a single ordinary disk file
- Across multiple remote servers
- Only in memory with no disk storage
- Using a proprietary hardware device
- Within an email attachment
Which programming language can directly interact with SQLite without any external server process?
Which programming language can directly interact with SQLite without any external server process?
- Python
- Cobol
- Assembly
- Oracle
- Fortran
What makes SQLite a 'serverless' database?
What makes SQLite a 'serverless' database?
- It does not require a separate server process to operate
- It only works on cloud services
- It needs a large database server
- It requires server activation for queries
- It connects to remote databases by default
Which SQL command can you use in SQLite to create a new table named 'Students'?
Which SQL command can you use in SQLite to create a new table named 'Students'?
- CREATE TABLE Students;
- BUILD Students;
- MAKE Students;
- GENERATE Students;
- INSERT Students;
Which of the following is NOT a key benefit of using SQLite?
Which of the following is NOT a key benefit of using SQLite?
- Requires minimal setup and administration
- High compatibility with many languages
- Built-in support for distributed transactions
- Lightweight and fast performance
- Suitable for small to medium-sized applications
In which situation is SQLite generally NOT recommended?
In which situation is SQLite generally NOT recommended?
- High-concurrency multi-user server applications
- Embedded systems with limited resources
- Prototyping simple database applications
- Standalone desktop programs
- Mobile apps needing local storage
Which file extension is commonly used for SQLite database files?
Which file extension is commonly used for SQLite database files?
- .db
- .sqlt
- .data
- .sqlite3d
- .sdbm
What command would you use to view all tables in an SQLite database from the command-line interface?
What command would you use to view all tables in an SQLite database from the command-line interface?
- .tables
- SHOW TABLES;
- LIST TABLES;
- PRINT TABLES;
- .showtables
Which of the following is true about data types in SQLite?
Which of the following is true about data types in SQLite?
- Data types are dynamically typed and flexible
- Only integer data types are allowed
- It has no data type system
- You must declare strict types for every field
- It uses only binary data types