Postgres Quiz Archive

You have 200 seconds to answer 20 Random questions so think fast!

You will need to score 80% or over to pass!


Created by Paul Sammy

PostgreSQL 14 Internals Chapter 1

A quiz to test the knowledge of those reading and learning from Postgres 14 Internals book by Egor Rogov, covering topics in Chapter 1.

1 / 20

1. To be able to restore data consistency, Postgres maintains

2 / 20

2. Which of the below objects can be referred to as relations?

choose 3

3 / 20

3. Each Database has its own System Catalog?

4 / 20

4. What is the name of the directory that contains the files related to the Postgres cluster?

5 / 20

5. Who is the Author of the Postgres 14 Internals book?

6 / 20

6. What is the default standard size for a fork file?

7 / 20

7. Tablespaces can be used to segregate data based on performance needs?

8 / 20

8. How many files or forks on disk will a 10Mb table with no index have?

9 / 20

9. Postgres by default has built in connection pooling abilities?

10 / 20

10. Which fork contains the actual table data?

11 / 20

11. Which fork keeps track of available space within pages?

12 / 20

12. What is a schema?

13 / 20

13. The default Page size is 2k?

14 / 20

14. What is the process first launched at server start?

15 / 20

15. What is the purpose of the public schema?

16 / 20

16. pg_catalog schema is used to store system catalog tables?

17 / 20

17. What is the purpose of the postgres database?

18 / 20

18. A single Postgres Instance can server only one database?

19 / 20

19. What 3 files/forks as a minimum make up a table on disk?

20 / 20

20. Postgres server spawns a new backend session for each connection?

Your score is

0%

Created by Paul Sammy

PostgreSQL 14 Internals Chapter 2

A quiz to test the knowledge of those reading and learning from Postgres 14 Internals book by Egor Rogov, covering topics in Chapter 2.

1 / 10

1. At any moment the database system can contain several versions of one and the same row?

2 / 10

2. non-repeatable read anomaly occurs when?

3 / 10

3. Based on Snapshot Isolation use of MVCC which of the below are permitted?

choose 3

4 / 10

4. Data Consistency is best handled at the application layer rather than at the database layer?

5 / 10

5. Which isolation level in theory could mean an application does not have to consider isolation anomalies?

6 / 10

6. Which parameters sets the database default isolation level?

7 / 10

7. The SQL standard specifies three isolation levels?

8 / 10

8. Lost updates are forbidden by the standard at all isolation levels?

9 / 10

9. Snapshot isolation is preferred but increases the number of required locks?

10 / 10

10. which of the below statements will start a transaction as Read Repeatable?

Your score is

0%

Created by Paul Sammy

PostgreSQL 14 Internals Chapter 3

A quiz to test the knowledge of those reading and learning from Postgres 14 Internals book by Egor Rogov, covering topics in Chapter 3.

1 / 10

1. A page along with its tuples is read into the buffer cache with compression transformations to enhance cache efficiency?

2 / 10

2. When a row is created, its xmin value is set to the transaction ID of which command?

3 / 10

3. Page header sizes can be easily displayed using the <choose from answers> extension

4 / 10

4. CLOG files are stored in which directory?

5 / 10

5. virtual IDs exist only in PGDATA/pg_vxid when not cached?

6 / 10

6. at any one time Postgres can have several versions of a row?

7 / 10

7. If a transaction aborts, all page changes are reverted(rolled back) in place?

8 / 10

8. Page free space can often become fragmented?

9 / 10

9. Which 2 items does a Virtual XID consist of?

10 / 10

10. indexes do not use row versioning?

Your score is

0%