Assignment Basics Introduction to the data This data is from a fictional popular website called JomaQuiz. The website hosts a bunch of quizzes for people to take. It ranges from quizzes like: “Which Silicon Valley character are you?” to “Can you name the capital of these countries?” Here is what the website would look like: 1 After answering all the questions, you get your result: 2 The dataset contains two tables: ● quiz_metadata ● daily_agg_quiz_metrics quiz_metadata Each row in this table is a single quiz. It has information about the quiz: ● quiz_id (number): the id of the quiz ● published (number): the unixtime for when the quiz was published ● quiz_type: the type of quiz ● num_questions: the number of questions in the quiz daily_agg_quiz_metrics This would be what we call a “cube” table. It aggregates daily on different metrics about consumption and engagement. It is partitioned by device and date. ● quiz_id (number): the id of the quiz ● device_type (string): the type of device the quiz was viewed on ● num_views (number): the number of times the quiz was viewed ● num_completes (number): the number of times the quiz was completed ● Num_shares (number): the number of times the quiz was shared using the share button 3 Problem 1: Give 10 different quiz_id from quizzes that have exactly 10 questions. Post one of the quiz id as your first post in the SQL forum. You can find the SQL forum in your library: Problem 2: Pick one of the quiz_id from the previous question and get all the engagement and consumption data for that quiz. It should look something like this: 4