This is an introduction to learn about Pariksha and types of questions to expect in quizzes.
Use the switch below to check your answers as you go.
Click the friendly Owl below to start.
In ordered fill-in-the-blanks question', order of your answer is important to get the question right.
You will know when you read the question whether an order of your answer is critical to get the question right.
* Answers: 'aries' and 'pisces'
Unordered fill-in-the-blanks questions are completely opposite of the ordered fill-in-the-blanks questions.
Order of your answers do not matter, as long as they are correct.
Try out next question as an example of unordered question.
* Answers:
'blue',
'yellow',
'black',
'green'
'red'
More than one answer is possible in multiple choice type questions.
Only one correct answer is possible in single choice type of questions.
<script setup>
const foo = computed(() =>
{
return 'bar'
}
)
</script>
The purpose of info-card is to display useful information in-between questions.
Occasionally, you may also see code-block on this card.
No interactivity is required on this card apart from next button to navigate away from it.
watchEffect(async () => {
const response = await fetch(
`${BaseURL}/todos/${todoId.value}`
)
})