C++ QUIZ

C++ QUIZ

12th Grade

14 Qs

quiz-placeholder

Similar activities

CSS Image Manipulation Quiz

CSS Image Manipulation Quiz

9th Grade - University

15 Qs

Networking Protocols Quiz

Networking Protocols Quiz

9th - 12th Grade

12 Qs

Quiz Informatika

Quiz Informatika

11th Grade - University

10 Qs

Python Library Routines Quiz

Python Library Routines Quiz

10th Grade - University

18 Qs

Latsol

Latsol

10th Grade - University

10 Qs

HTML QUIZ

HTML QUIZ

6th Grade - University

13 Qs

高二資訊課補考題目

高二資訊課補考題目

11th Grade - University

10 Qs

1.4 Logic Gate and Simple Logic Circuit

1.4 Logic Gate and Simple Logic Circuit

12th Grade - University

13 Qs

C++ QUIZ

C++ QUIZ

Assessment

Quiz

Information Technology (IT)

12th Grade

Medium

Created by

AHMAD AINI

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

14 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Who is the creator of C++?

Dennis Ritchie

James Gosling

Bjarne Stroustrup

Guido van Rossum

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

In which year was C++ created?

1980✅

1983

1972

1991

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is a correct C++ comment?

This is a comment

<-- This is a comment -->

# This is a comment

/* This is a comment */

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the correct syntax to print "Hello, World!" in C++?

print("Hello, World!");

Console.WriteLine("Hello, World!");

cout << "Hello, World!";

printf("Hello, World!");

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of this if-else statement?
int x = 10;
if (x > 10)
cout << "Greater";
else
cout << "Smaller";

Smaller

Greater

Error

No output

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times will this loop execute?
for(int i = 0; i < 5; i++) {

cout << i << " ";

}

Infinite

6 times

4 times

5 times

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of this loop?
int i = 1;

while (i < 4) {

cout << i << " ";

i++;

}

1 2 3

0 1 2

1 2 3 4

Infinite loop

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?