Quiz - 5 on Increment and Decrement Operators

Quiz - 5 on Increment and Decrement Operators

15 Qs

quiz-placeholder

Similar activities

Python

Python

KG - University

15 Qs

Lesson six - Sensing

Lesson six - Sensing

KG - University

17 Qs

1.3 Rescue Mission

1.3 Rescue Mission

KG - University

13 Qs

Spring 2025 COSC 2425 Chapter 4 Checkpoints Part 1

Spring 2025 COSC 2425 Chapter 4 Checkpoints Part 1

KG - University

20 Qs

Training Trackers Lessons 1 & 2 Quiz

Training Trackers Lessons 1 & 2 Quiz

6th - 8th Grade

17 Qs

Parcial 1-Laboratorio II-5to BACO-I Unidad Forma A

Parcial 1-Laboratorio II-5to BACO-I Unidad Forma A

KG - University

13 Qs

Quiz - 5 on Increment and Decrement Operators

Quiz - 5 on Increment and Decrement Operators

Assessment

Quiz

others

Hard

Created by

Michael Kona

Used 4+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the value of x after the following code is executed?

int x = 5;

x++;

4
5
6
7

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the value of y after the following code is executed?

int y = 10;

y--;

8
9
10
11

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the value of z after the following code is executed?

int z = 3;

int a = z++;

2
3
4
5

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the final value of b in the following code? int a = 5; int b = ++a;
4
5
6
7

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? int x = 2; int y = x++ + 5; printf("%d", y);
6
7
8
9

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following code? int a = 4; int b = --a + 3;
5
6
7
8

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

After executing the following code, what is the value of c? int a = 7; int b = a--; int c = b + a;
12
13
14
15

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?