C++ Comments and Indentation MCQ (MULTIPLE CHOICE QUESTIONS)

We have already covered C++ Increment and Decrement questions in the last set of MCQs. There, we have discussed some good questions. This set of MCQ(multiple choice questions focuses) on the C++ Comments and Indentation.

You should practice these interview questions to improve C++ programming skills needed for various interviews (like company interview, campus interview, walk-in interview), entrance exams, placements and other competitive exams. All the questions in this particular section are based on only “C++ Comments and Indentation MCQ“.

Instructions to be followed:-

  1. Read all the questions carefully.
  2. Out of the 4 given options for each questions, only ONE option will be correct.
  3. Choose the appropriate option.
  4. After attempting all the questions, click on “Finish” button to check the score.
  5. Share your result on social media handles available.

If you are not satisfied with your result or wants to attempt the Quiz again, don’t worry, you can try it again at the end (by refreshing the page). You can use Previous and Next button to switch to a different set of questions.

C++ Comments and Indentation MCQ
C++ COMMENTS AND INDENTATION MCQ

C++ MCQ | COMMENTS AND INDENTATION

NOTE: You can check your answer immediately by selecting an option.

Now, start attempting the quiz.

C++ Comments and Indentation MCQ Questions

#1. What is used to write multi line comment in c++?

#2. What will be the output of the following C++ code?

#include <iostream>
using namespace std;
int main()
{
     /* this is comment*
     cout << "hello world";
     return 0;
}

#3. What will be the output of the following C++ code?

#include <iostream>
using namespace std;
void square (int *p)
{
     *p = (*p + 3) * (*p);
}
int main ( )
{
     int n = 10;
     square(&n);
     cout << n;
     return 0;
}

#4. What will be the output of the following C++ code?

#include <iostream>
using namespace std;
int add(int p, int q);
int main()
{
     int k = 7, L = 9;
     cout << add(k, L) << endl;
     return 0;
}
int add(int p, int q )
{
     int sum = p + q;
     p = 10;
     return p + q;
}

#5. How many types of comments are there in c++?

#6. What is a comment in c++?

#7. What will be the output of the following C++ code?

#include <iostream>
using namespace std;
long fact (long p)
{
   if (p > 1)
     return (p * fact (p + 1));
   else
     return (1);
}
int main ()
{
   long n = 6;
   cout << n << "! = " << fact ( n );
   return 0;
}

#8. What type of comments does c++ support?

#9. What will happen when we use void in argument passing?

#10. What is the use of the indentation in c++?

Finish

Results

<< Prev- C++ MCQs : Increment and Decrement

>> Next- C++ MCQ : Pointer to void


Wants to learn more about C++ Programming? If yes, then don’t forget to explore all the topics of C++ programming. Here, is the complete set of Multiple Choice Questions and Answers. You should learn all the questions available there. These questions are very helpful for the preparation of placements, Competitive Exams and University level exams.

Learn about 404 ERROR page – EVERYTHING YOU NEED TO KNOW ABOUT 404 ERROR PAGE FOR SEO

For frontend projects, check and implements these beginner’s friendly projects :- TOP 7 PROJECTS FOR BEGINNERS TO PRACTICE HTML & CSS SKILLS

Learn about UML: WHAT IS UML?

ROLE OF UML IN OOAD(OBJECT-ORIENTED ANALYSIS AND DESIGN)

Do practice of HTML questions :- Multiple choice questions on HTML

Do practice of C programming :- Multiple choice questions on C programming

Want backlinks to your website? If yes, then follow this article and get to know in very easy way. How You Can Create High Quality Backlinks In 2021?

The above question set contains all the correct answers. But in any case, you find any typographical, grammatical or any other error in our site then kindly inform us. Don’t forget to provide the appropriate URL along with error description. So that we can easily correct it.

Thanks in advance.

For discussion about any question, join the below comment section. And get the solution of your query. Also, try to share your thoughts about the topics covered in this particular quiz.

Leave a Comment

Your email address will not be published. Required fields are marked *