fter carefully studying the infographic, Thato is now convinced that a database is necessary. But

now, he must choose whether to use a relational or NoSQL database.
Explain to him which type of database (relational or NoSQL) you would recommend and why for
each of the following types of data.

Q.2.1 Data about courses, for example, the name of the course, name of the creator,
category that the course belongs to, etc

For data about courses such as the name of the course, name of the creator, category that the course belongs to, etc., I would recommend a relational database.

Relational databases are well-suited for structured data with clear relationships between different types of information. In this case, the data about courses can be organized into tables where each piece of information (course name, creator name, category) can be stored in separate columns. The relationships between the different pieces of data can be easily defined through primary and foreign keys. This makes it easier to query the data, analyze relationships, and ensure data integrity.

Overall, a relational database would be the ideal choice for storing and managing data about courses as it provides a structured and organized way to store and access this type of information.