Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 4, 2020 10:44 am GMT

How to make a CLI Quiz App using Javascript for Beginners

In this Blog, we will understand how to make a CLI Quiz App using Javascript.

Im using JavaScript because is one of the most used programming language today thats the 1st reason. The 2nd reason is that I find it really fun to work. But dont worry if you havent used it as Im going to explain step by step the entire process

For those who don't know what is a CLI App:

Command Line Interface (CLI), is a text-based interface used to interact with the operating system or the software by typing commands into the interface and receiving a response in the same way that is entirely through your terminal and shell. CLI Applications or (CLIs) they have no graphics or visual interface like GUI Applications.

Also, kindly note that I dont claim to have the best possible solution. Im more than happy to see other solutions as well.

Ok, enough with the chit-chat lets get our hands dirty.

CLI Quiz App

Things we will do in this App:

  1. Ask User to Enter their name.
  2. Tell them the rules and instruction of you Quiz
  3. Ask them Questions Serialvise
  4. If the User's answer is Right Increase theri score, and display the score
  5. If the User's answer is wrong Show them the Right Answer, and decrease the score also don't decrement till negative number (after Zero)
  6. After all Question are Completed Show them the final Score

Great sounds fun! Lets get into it.

There are different ways to take user input in Javascript but to take the User input through console ( command line ) we will require one npm package: readline-sync.

Firstly, We will import the readline-sync package in our program. To include it, we use the require() function with the name of the module and will store it in a constant variable because it won't change throughout our program:

const readlineSync = require('readline-sync');
Enter fullscreen mode Exit fullscreen mode

After that, we will greet the user and will ask their name by using readlineSync.question() function from our imported pakage and then store the username in a variable for further use :

console.log('Welcome to the Quiz');let username = readlineSync.question("What's your Name: 
");
Enter fullscreen mode Exit fullscreen mode

Here, we are concatenation three String. There are different ways to concatenate string in JS , we will use a plus operator to do so!

console.log('Hello ' + username + ", Let's Play the Quiz!!");
Enter fullscreen mode Exit fullscreen mode

If you want to have a look at different ways of concatenating string in Javascript here's it.

Now, we will simply display our rules and instructions for our program. Choose any topic you want for your Quiz. Also, note that we are going to ask user both one-word as well as Multiple Choice (MCQ's) questions.

console.log('Rules & Instructions: ');console.log('1.',username + ', There are 10 Questions on India and all are Compulsory.');console.log('2. You will get 2 points on each Right Answer.');console.log('3. One Point will be deducted if the Answer is Wrong.');console.log('4. In MCQ based questions you have to type the Serial Number / Index Value.');
Enter fullscreen mode Exit fullscreen mode

Now, The Main Logic Begins:

First, well need a variable to store the score of user. Well initialize it with 0.

let score = 0;
Enter fullscreen mode Exit fullscreen mode

We will ask user 5 answer in one word questions and 5 MCQ based questions. For that we will require 2 for loops, 2 functions one for MCQ based another for one for one-word answer and 2 array of objects to store questions and answers.

It you don't know what all these keywords are here's an article for you.

Let's start with storing an array of object for questions and answers.

For One-word Questions:

var questionsList = [     {        question : 'India\'s Largest City by Population: ',        answer : 'Mumbai',    },  {    question : 'National Song of India: ',    answer : 'Vande Mataram',  },   {    question : 'National Motto of India: ',    answer : 'Satyameva Jayate',  },   {    question : 'Golden Temple is situated in: ',    answer : 'Amritsar',  },];
Enter fullscreen mode Exit fullscreen mode

For MCQ Questions array we will also store array of Options in it.

var mcqList = [  {    array : ['Mumbai', 'Hyderabad', 'Guragon', 'Bangalore'],    question : 'Which City is known as "Electronic City of India"? ',    answer : 'Bangalore'  },  {    array : ['Kerala', 'Madras', 'Bangalore', 'New Delhi'],    question : 'The Indian Institute of Science is located at ',    answer : 'Bangalore'  },  {    array : ['Dugong', 'Blue whale', 'River Dolphin', 'Pygmy Killer Whale'],    question : 'What is the name of India\'s National Aquactic Animal: ',    answer : 'River Dolphin'  },  {    array : ['New Delhi', 'Hyderabad', 'Amritsar', 'Mumbai'],    question : 'The Centre for Cellular and Molecular Biology in India is situated at: ',    answer : 'Hyderabad'  },  {    array : ['Delhi', 'Dehradun', 'Lucknow', 'Gandhinagar'],    question : 'National Institute of Aeronautical Engineering is located at ',    answer : 'Delhi'  },  {    array : ['T.N.Kaul', 'J.R.D. Tata', 'Nani Palkhivala', 'Khushwant Singh'],    question : 'Who wrote the famous book - "We the people"? ',    answer : 'Nani Palkhivala'  },];
Enter fullscreen mode Exit fullscreen mode

Now, we require function to display question, take user input, check whether the input the correct and on based on that we will increment and decrement the score of the user.

So, Let's start by declaring a function for one-word answers. Also,this function will take 2 inputs question and answer from our array questionsList.

function quiz(question,answer){}
Enter fullscreen mode Exit fullscreen mode

Now, we need a way to display the question to the user as well as take the user given answer for the question displayed. So, again for that we will use readlineSync.question() function.

function quiz(question,answer){    let userAnswer = readlineSync.question(question);}
Enter fullscreen mode Exit fullscreen mode

Here, we are displaying the question to the user and then storing the user input in a variable userAnswer.

Now we will check whether the user entered answer and our answer is correct or not and depending on that we will increment the score by 2 or decrement the score by 1. Also, remember if the user enters wrong answer we have to display them the correct answer.

function quiz(question,answer){    let userAnswer = readlineSync.question(question);    if(userAnswer.toLowerCase() == answer.toLowerCase()){    console.log('You are Right.');    score = score + 2;  } else{    console.log('You are Wrong.');    console.log('The Correct Answer is:',answer);    score = score - 1;  }}
Enter fullscreen mode Exit fullscreen mode

Here, we are converting both answers to lowercase because JavaScript is a case sensitive language. It means that "Mumbai" and "mumbai" are two different words.

If you want to read more about toLowerCase() function here are the docs.

To display the score after every question we will use console.log() after if else condition so that even if either of the conditions run our score will be displayed.

function quiz(question,answer){    let userAnswer = readlineSync.question(question);    if(userAnswer.toLowerCase() == answer.toLowerCase()){    console.log('You are Right.');    score = score + 2;  } else{    console.log('You are Wrong.');    console.log('The Correct Answer is:',answer);    score = score - 1;  }    if(score < 0){    score = 0;  }     console.log('Score is: ',score);}
Enter fullscreen mode Exit fullscreen mode

We don't know what are scope to decrement below zero (negative number) that's why we are checking wheather score < 0 .

Function for MCQ questions.

function quizMcq(listOfAnswers,question,answer){}
Enter fullscreen mode Exit fullscreen mode

You are we will take three inputs for the function. An array of list of option for displaying the options to the user, question and the correct answer to check whether the user entered answer and our answer is correct or not.

Now, We will use one another function from our readline-sync package that is readlineSync.keyInSelect() .This function will take two parameters, the list of options to display it to the user and the question. If you want to read more about this function in the docs.

function quizMcq(listOfAnswers,question,answer){    let userAnswer = readlineSync.keyInSelect(listOfAnswers, question);}
Enter fullscreen mode Exit fullscreen mode

Now we will put userAnswer in a array of options to check whether entered answer is correct. Rest of all is same.

function quizMcq(listOfAnswers,question,answer){    let userAnswer = readlineSync.keyInSelect(listOfAnswers, question);    if(listOfAnswers[userAnswer] === answer){    console.log('You are Right.');    score = score + 2;  }else{    console.log('You are Wrong.');    console.log('The Correct Answer is: ',answer);    score = score - 1;  }  if(score < 0){    score = 0;  }  console.log(chalk.cyan('Score is: ',score));}
Enter fullscreen mode Exit fullscreen mode

Now, we require a for loop to look through our questionsList for one-word questions.

for(var i = 0;i<questionsList.length;i++){}
Enter fullscreen mode Exit fullscreen mode

Now we will call our quiz function in the for loop so that we can repeatedly loop through our questions till the end.

for(var i = 0;i<questionsList.length;i++){    quiz(questionsList[i].question,questionsList[i].answer);}
Enter fullscreen mode Exit fullscreen mode

Understand that, our list of question is an array of object that's why we are accessing our object property i.e. question and answer with the dot operator.

for loop to look through our questionsList for MCQ questions.

for(var i = 0;i < mcqList.length; i++) {  quizMcq(mcqList[i].array,mcqList[i].question,mcqList[i].answer);}
Enter fullscreen mode Exit fullscreen mode

Now finally at the end we will display the total score to the user.

console.log('Congratulations,',username,'your Total Score is: ',score);
Enter fullscreen mode Exit fullscreen mode

Hurray! We did it!

Complete Program:

const readlineSync = require('readline-sync');console.log('Welcome to the Quiz');let username = readlineSync.question("What's your Name: 
");console.log('Hello',username,", Let's Play the Quiz!!");console.log('
');console.log('Rules & Instructions: ');console.log('1.',username + ', There are 10 Questions on India and all are Compulsory.');console.log('2. You will get 2 points on each Right Answer.');console.log('3. One Point will be deducted if the Answer is Wrong.');console.log('4. In MCQ based questions you have to type the Serial Number / Index Value.');console.log('
');var questionsList = [ { question : 'India\'s Largest City by Population: ', answer : 'Mumbai', }, { question : 'National Song of India: ', answer : 'Vande Mataram', }, { question : 'National Motto of India: ', answer : 'Satyameva Jayate', }, { question : 'Golden Temple is situated in: ', answer : 'Amritsar', },];var mcqList = [ { array : ['Mumbai', 'Hyderabad', 'Guragon', 'Bangalore'], question : 'Which City is known as "Electronic City of India"? ', answer : 'Bangalore' }, { array : ['Kerala', 'Madras', 'Bangalore', 'New Delhi'], question : 'The Indian Institute of Science is located at ', answer : 'Bangalore' }, { array : ['Dugong', 'Blue whale', 'River Dolphin', 'Pygmy Killer Whale'], question : 'What is the name of India\'s National Aquactic Animal: ', answer : 'River Dolphin' }, { array : ['New Delhi', 'Hyderabad', 'Amritsar', 'Mumbai'], question : 'The Centre for Cellular and Molecular Biology in India is situated at: ', answer : 'Hyderabad' }, { array : ['Delhi', 'Dehradun', 'Lucknow', 'Gandhinagar'], question : 'National Institute of Aeronautical Engineering is located at ', answer : 'Delhi' }, { array : ['T.N.Kaul', 'J.R.D. Tata', 'Nani Palkhivala', 'Khushwant Singh'], question : 'Who wrote the famous book - "We the people"? ', answer : 'Nani Palkhivala' },];let score = 0;function quiz(question,answer){ let userAnswer = readlineSync.question(question); if(userAnswer.toLowerCase() == answer.toLowerCase()){ console.log('You are Right.'); score = score + 2; } else{ console.log('You are Wrong.'); console.log('The Correct Answer is:',answer); score = score - 1; } if(score < 0){ score = 0; } console.log(chalk.cyan('Score is: ',score));}function quizMcq(listOfAnswers,question,answer){ let userAnswer = readlineSync.keyInSelect(listOfAnswers, question); console.log('
'); if(listOfAnswers[userAnswer] === answer){ console.log('You are Right.'); score = score + 2; } else{ console.log('You are Wrong.'); console.log('The Correct Answer is: ',answer); score = score - 1; } if(score < 0){ score = 0; } console.log('Score is: ',score);}for(var i = 0;i<questionsList.length;i++){ console.log('
'); quiz(questionsList[i].question,questionsList[i].answer); console.log('*******************************');}for(var i = 0;i < mcqList.length; i++){ console.log('
'); quizMcq(mcqList[i].array,mcqList[i].question,mcqList[i].answer); console.log('*******************************');}console.log('
');console.log('Congratulations,',username,'your Total Score is: ',score));
Enter fullscreen mode Exit fullscreen mode

Things you will learned while building this app:

  1. How to take user inputs through an npm module.
  2. How to concatenate strings.
  3. What are of array of objects and how to loop through them.
  4. How to use functions and branching conditions.

Conclusion

I know that the problem might seem trivial for some of you, but if it helped you in any way, Im very happy about it!

Thank you very much for the patience. Id love to hear your feedback about the post. Let me know what you think about this article, and javascript in general, through my Twitter and LinkedIn handles. I would love to connect with you out there!

Peace!


Original Link: https://dev.to/prerana1821/how-to-make-a-cli-quiz-app-using-javascript-for-beginners-cij

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To