Practice
Resources
Contests
Online IDE
New
Free Mock
Events New Scaler
Practice
Improve your coding skills with our resources
Contests
Compete in popular contests with top coders
logo
Events
Attend free live masterclass hosted by top tech professionals
New
Scaler
Explore Offerings by SCALER

C++ MCQ with Answers

C++ is a general-purpose programming language. It was designed and implemented by Bjarne Stroustrup in 1979 at Bell Labs. It runs on a variety of platforms, such as Windows, MacOS, and the various versions of UNIX. C++ is

  • A superset of C
  • Supports data abstraction
  • Supports object-oriented programming
  • Supports generic programming.

Types: Types are fundamental to any program. 

C++ has extensive support for types:

  • Primitive types(characters, integers, floating-point numbers, etc.)- Defined by the language itself.
  • User-defined types - Provides mechanisms that let us define our own data types.

Primitive Types can be divided into two types:

  • Arithmetic Type -
    • Integral Types(Characters, integers, boolean values, etc)
    • Floating-point types(float, double, etc)
  • Void(special type)

Variables: A variable provides us with named storage that our programs can manipulate.
Each variable in C++ has a type. It determines the size and layout of the variable’s memory.
It also determines the range of values that can be stored within that memory along with the set of operations that can be applied to the variable. A simple variable definition consists of:

  • A type specifier.
  • A list of one or more variable names separated by commas, and ends with a semicolon.

Classes and Objects in C++:

  • Class is a description of an object.
  • An object is an instance of a class

Instance member variable: Attributes, data members, field, properties.
Instance member functions: Methods, procedures, actions, operations, services.

Access Specifier: There are three types of access specifiers in class:

  • Private
  • Public
  • Protected

Features of OOPS: There are primarily four pillars of OOPS:

  • Data abstraction: Data hiding
  • Inheritance: Reusability
  • Polymorphism: Object to take many forms
  • Encapsulation: Data hiding

C++ MCQ

Events | Powered By
Certificate included
About the Speaker
What will you Learn?
Register Now
1. 

Identify the correct extension of the user-defined header file in C++.

2. 

Identify the incorrect constructor type.

3. 

C++ uses which approach?

4. 

Which of the following data type is supported in C++ but not in C?

5. 

Identify the correct syntax for declaring arrays in C++.

6. 

Size of wchat_t is.

7. 

Which of the following is “address of operator”?.

8. 

Identify the correct example for a pre-increment operator.

9. 

Which of the following loops is best when we know the number of iterations?

10. 

Identify the scope resolution operator.

11. 

goto can be classified into?

12. 

Identify the correct definition of ‘*’ operator in pointer.

13. 

By which of the following can the if-else statement be replaced?

14. 

Choose the correct default return value of function.

15. 

Using which of the following data type can 19.54 be represented?

16. 

When can an inline function be expanded?

17. 

Identify the correct function from which the execution of C++ program starts?

18. 

Choose the correct option which is mandatory in a function.

19. 

The constants in C++ are also known as?

20. 

Using which of the following keywords can an exception be generated?

21. 

Identify the size of int datatype in C++.

22. 

Which of the following types is the language C++?

23. 

What is the ASCII value of ‘\0’ character?

24. 

Identify the format string among the following.

25. 

What is do-while loop also known as?

26. 

Identify the correct range of signed char.

27. 

Choose the size of the below struct.

Struct{
Int a;
Char b;
Float c;
}
28. 

Identify the logical AND operator.

29. 

Choose the correct subscript operator.

30. 

Choose the type of loop which is guaranteed to execute at-least once?

31. 

How much bytes of memory does void occupy?

32. 

Why are comments used?

33. 

Total types of errors in C++.

34. 

Identify the storage classes that have global visibility.

35. 

Choose the option below which is not a member of class.

36. 

Total types of constructors in C++ are?

37. 

What is the number of parameters that a default constructor requires?

38. 

What does a C++ class hold?

39. 

Data members and member functions of a class are private by.default. True or False?

40. 

Under which pillar of OOPS does base class and derived class relationship come?

41. 

Which of the following functions can be inherited from base class?

42. 

Find the output of the following program.

main(){
  Float a = 5;
  switch(a){
     Case 5: cout <<”Interviewbit”;
     Default: cout <<”Scaler”;
  }
}
43. 

Find the output of the following program.

main(){
  int a = 10, b, c;
  b  = a++;
  c = a;
  cout << a << “ “ <<b <<” “<< c << endl;
}
44. 

Find the output of the following program.

main(){
  int a, b = 10;
  a = 95 / 10;
  cout << a << endl;
}
45. 

How many times will the print statement be executed?

main(){
  int i = 0;
  label:
  cout << “Interviewbit;
  i++;
  if(i < 3){
    goto label;
  }
}
46. 

Find the output of the following program.

main(){
 cout <<  -10 - 10 -10;
}
47. 

Find the output of the following program.

main(){
 int a = 10 / 0;
}
48. 

Identify the correct escape sequence used for the new line.

49. 

Find the output of the following program.

main(){
 char ch[] = “Interviewbit Scaler”; 
 int l = strlen(ch);
 cout << l << endl;
}
50. 

Find the output of the following program.

main(){
 int i = (1, 2, 3);
 cout << i << endl;
}
51. 

Which of the following is the correct identifier?

52. 

Which of the following is not a type of inheritance?

53. 

What is an object in c++?

Excel at your interview with Masterclasses Know More
Certificate included
What will you Learn?
Your feedback is important to help us improve.
Free Mock Assessment
Fill up the details for personalised experience.
All fields are mandatory
Current Employer *
Enter company name *
Graduation Year *
Select an option *
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
Phone Number *
OTP will be sent to this number for verification
+1 *
+1
Change Number
Phone Number *
OTP will be sent to this number for verification
+1 *
+1
Change Number
Graduation Year *
Graduation Year *
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
*Enter the expected year of graduation if you're student
Current Employer *
Company Name *
Please verify your phone number
Edit
Resend OTP
By clicking on Start Test, I agree to be contacted by Scaler in the future.
Already have an account? Log in
Free Mock Assessment
Instructions from Interviewbit
Start Test