Skip to content

Commit

Permalink
Add JS questions
Browse files Browse the repository at this point in the history
  • Loading branch information
imollm committed Oct 17, 2022
1 parent 2224656 commit 0feca10
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions server/database/quizzes/javascript.json
Original file line number Diff line number Diff line change
Expand Up @@ -418,5 +418,41 @@
"answer_d": ".replace()"
},
"correct_answer": "answer_d"
},
{
"id": "356",
"category": "javascript",
"level": "dificil",
"question": "¿Qué función tiene el event loop?",
"answers": {
"answer_a": "Es responsable de compilar el código, recopilar y procesar eventos y ejecutar subtareas en cola",
"answer_b": "Es responsable de revisar el código, recopilar y procesar eventos y ejecutar tareas en cola",
"answer_c": "Es responsable de ejecutar el código, recopilar y procesar eventos y ejecutar subtareas en cola"
},
"correct_answer": "answer_c"
},
{
"id": "357",
"category": "javascript",
"level": "dificil",
"question": "¿Cuál es la definición de Clousure?",
"answers": {
"answer_a": "Es la combinación de una función agrupada (encerrada) con referencias a su estado circundante (el entorno dislexico)",
"answer_b": "Es la combinación de una función desagrupada (encerrada) con referencias a su estado circundante (el entorno léxico)",
"answer_c": "Es la combinación de una función agrupada (encerrada) con referencias a su estado circundante (el entorno léxico)"
},
"correct_answer": "answer_c"
},
{
"id": "358",
"category": "javascript",
"level": "facil",
"question": "¿Qué método de la API del navegador se utiliza para hacer una petición HTTP de forma nativa?",
"answers": {
"answer_a": "fetch(\"https://some-url-here.com\")",
"answer_b": "axios.get(\"https://some-url-here.com\")",
"answer_c": "makeRequest(\"https://some-url-here.com\")"
},
"correct_answer": "answer_a"
}
]

0 comments on commit 0feca10

Please sign in to comment.