--- task_categories: - text-classification - question-answering language: - pt tags: - multiple-choice - questions - education pretty_name: Multiple Choice Questions Dataset size_categories: - 1K Como o foco do estudo foi a recuperação de documentos semelhantes, não armazenamos a alternativa correta nem os níveis de dificuldade de cada questão. #### Língua Português - Brasil (PT-BR) #### Instância dos dados Um exemplo do conjunto de dados: ``` { "title": "Banco de Dados SQL , MySQL", "statement": "Qual é a instrução SQL (suponha o MySQL) que irá permitir criar uma nova tabela com base nos resultados de uma consulta em uma tabela existente?", "alternatives": { "A": "CREATE TABLE AS SELECT", "B": "COPY TABLE FROM", "C": "INSERT SELECT (TABLE) INTO", "D": "CLONE TABLE WITH SELECT" } } ``` --- ### Multiple Choice Questions - Database (EN) #### Context This repository contains a dataset (data.json) of multiple choice questions primarily used in *information retrieval* model development. #### Dataset Description The dataset consists of multiple choice questions covering various topics within the field of Computer Science. Each question is structured in JSON format with the following fields: - **_id_**: Unique identifier of the question. - **_title_**: Title of each question, indicating the area and subarea of study. (Data Structures, Queues) - **_statement_**: The statement of the question. - **_alternatives_**: A list of answer options, including the correct one. > Due to the focus on document retrieval, correct answers and question difficulty levels are not stored. #### Language Portuguese - Brazil (PT-BR) #### Sample Data Instance An example data entry: ``` { "title": "Banco de Dados SQL , MySQL", "statement": "Qual é a instrução SQL (suponha o MySQL) que irá permitir criar uma nova tabela com base nos resultados de uma consulta em uma tabela existente?", "alternatives": { "A": "CREATE TABLE AS SELECT", "B": "COPY TABLE FROM", "C": "INSERT SELECT (TABLE) INTO", "D": "CLONE TABLE WITH SELECT" } } ```