New game
Download
Get Academic Plan
Share game
Integrate it into your platform

You can integrate the game into an LMS compatible with LTI 1.1 or LTI 1.3 such as Canvas, Moodle, or Blackboard. This way, the scores will be automatically saved into the platform’s gradebook.
Download
You have exceeded the maximum number of games you can integrate into Google Classroom with your current Plan.

To integrate as many games as you want in Google Classroom, you need an Academic Plan or a Commercial Plan.

You have exceeded the maximum number of games you can integrate into Microsoft Teams with your current Plan.

To integrate as many games as you want in Microsoft Teams, you need an Academic Plan or a Commercial Plan.

Downloading games is an exclusive feature for users with an Academic Plan or a Commercial Plan.

Get your Academic Plan or your Commercial Plan now and start integrating your games into your LMS, website or blog.

If you wish, you can download a demo game here and test its integration:

Basics of C++ Quiz

Quiz

Played 0

About this activity

Test your C++ basics

Created by

India

Download the paper version to play

Make your own free game from our game creator
Compete against your friends to see who gets the best score in this game

Top Games

%
Anonymous
Anonymous
%
%
%
You have exceeded the maximum number of games you can print with your current Plan.

To print as many games as you want, you need an Academic Plan or a Commercial Plan.

Print your game
Basics of C++ Quiz
 

Basics of C++ QuizOnline version

Test your C++ basics

by MAHENDRASINH HETRAJ
1

Which statement prints Hello World to the console in C++?

2

Which data type best fits storing whole numbers without decimals?

3

Which loop guarantees at least one execution of the body?

4

What is the purpose of header files like #include ?

5

Which operator is used for logical AND in C++?

6

Which function serves as the program entry point in C++?

7

What does the keyword const mean when applied to a variable?

8

Which STL container stores elements contiguously in memory?

9

How do you declare an array of 5 integers in C++?

10

Which qualifier is used for member functions that do not modify the object?

Feedback

std::cout is the C++ stream for console output; the other options are not valid C++ for this task.

int is used for whole numbers; float/double store decimals, and char stores single characters.

A do-while loop runs the body once before evaluating the condition.

Header files declare functions, classes, and objects from libraries used by the program.

&& evaluates to true only if both operands are true.

The function int main() is the starting point of a C++ program.

const makes the value read-only after initialization.

Vectors store elements in a contiguous memory block, unlike list/set.

C-style arrays use the type name followed by the name and size in brackets.

Adding const after the parameter list makes a member function promise not to modify the object.

Are you sure you want to leave the page?

If you leave the page, you will lose your game progress.