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. A single Postgres Instance can server only one database?

2 / 20

2. Which fork contains the actual table data?

3 / 20

3. Postgres uses a thread based process model?

4 / 20

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

5 / 20

5. What is the name of the catalog that stores metadata for all cluster objects?

6 / 20

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

7 / 20

7. Each Database has its own System Catalog?

8 / 20

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

9 / 20

9. What is another name for the postgres process?

10 / 20

10. The pg_default tablespace should never be used to create user tables?

11 / 20

11. The information_schema schema provides information on Postgres release notes?

12 / 20

12. What is the purpose of the postgres database?

13 / 20

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

14 / 20

14. Some System Catalog tables are common to all databases in the cluster?

15 / 20

15. Users should not modify the template0 database

16 / 20

16. TOAST tables reside in a seperate schema?

17 / 20

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

18 / 20

18. What is a schema?

19 / 20

19. How does Postgres know which schema to use if not specified?

20 / 20

20. Each tablespaces can only be assigned for use by one database

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. Which of the below are valid Isolations Levels?

choose 2

2 / 10

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

3 / 10

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

4 / 10

4. Which of the below would best describe a dirty read?

5 / 10

5. non-repeatable read anomaly occurs when?

6 / 10

6. What is the acronym used for the attributes that ensure Data consistency, integrity and durability?

7 / 10

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

8 / 10

8. Which parameters sets the database default isolation level?

9 / 10

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

10 / 10

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

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. Which of the below are true about a Pages Item Pointer?

2 / 10

2. Indexes values also support multi versioning with several versions of an index value existing at any point in time?

3 / 10

3. index row headers like table row headers contain xmin and xmax fields?

4 / 10

4. If a transaction is read only which kind of Transaction ID is it allocated?

5 / 10

5. When a transaction is committed Postgres uses a special <replace with answer> structure?

6 / 10

6. CLOG contains how many bits for each transaction?

7 / 10

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

8 / 10

8. Rows of TOAST tables are handled in such a way that they are never update?

9 / 10

9. Tuples can also be referred to as columns?

10 / 10

10. status of a subtransaction is written into CLOG?

Your score is

0%