Mastery

Mastery

University

44 Qs

quiz-placeholder

Similar activities

Arrays and ArryList

Arrays and ArryList

University

40 Qs

Data Structures and Algorithms Quiz

Data Structures and Algorithms Quiz

University

40 Qs

Exception in Java

Exception in Java

University

41 Qs

Test Extra Programación

Test Extra Programación

University

40 Qs

Quiz on C Operators

Quiz on C Operators

University

49 Qs

Tema 4 Programación Básica

Tema 4 Programación Básica

University

40 Qs

INED_LAB Producción de Contenidos Digitales

INED_LAB Producción de Contenidos Digitales

12th Grade - University

44 Qs

Pemrograman Dasar Kelas X TKJ

Pemrograman Dasar Kelas X TKJ

KG - Professional Development

40 Qs

Mastery

Mastery

Assessment

Quiz

Computers

University

Easy

Created by

ZPPSU VLs

Used 1+ times

FREE Resource

44 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be the output of this C++ code? int a = 7, b = 3; cout << a % b;
1
2
3
0

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What does this C++ code output? bool x = true, y = false; cout << (x || y);
1
0
True
False

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the result of this expression? (5 != 3) && (4 < 2)
True
False
1
0

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the output of this C++ code? int x = 10; cout << --x << " " << x--;
9 9
9 8
10 9
9 10

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will this code print? int x = 5, y = 8; cout << (x < y ? x : y);
5
8
13
Error

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be printed? int num = 3; if (num % 2 == 0) cout << "Even"; else cout << "Odd";
Even
Odd
3
Error

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Identify the error in this if statement: if (x = 5) cout << "Five";
x should be == 5
Missing semicolon
cout should be printf
x should be declared

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?