SJI9-ICT 2ND QUARTER EXAM

SJI9-ICT 2ND QUARTER EXAM

9th Grade

30 Qs

quiz-placeholder

Similar activities

Python Programming Quiz

Python Programming Quiz

9th - 12th Grade

30 Qs

Y9 Python Review

Y9 Python Review

9th Grade - University

30 Qs

Mod 2 Risk Adversity Trust

Mod 2 Risk Adversity Trust

9th - 12th Grade

29 Qs

Guia de estudio PseInt

Guia de estudio PseInt

9th - 12th Grade

29 Qs

Form 2 - Information Technology Quiz

Form 2 - Information Technology Quiz

8th Grade - University

25 Qs

Python Review of Units 3 and 4

Python Review of Units 3 and 4

9th Grade

31 Qs

Review Python_G8

Review Python_G8

8th Grade - University

28 Qs

G9-Introduction to Python Programming

G9-Introduction to Python Programming

9th Grade - University

25 Qs

SJI9-ICT 2ND QUARTER EXAM

SJI9-ICT 2ND QUARTER EXAM

Assessment

Quiz

Information Technology (IT)

9th Grade

Hard

Created by

TEACHER ROSE

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

1. What is the result of the following expression if x = 5 and y = 10?

x == y

TRUE

FALSE

ERROR

Answer explanation

  • 5 == 10 evaluates to false because 5 is not equal to 10.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the result of this expression if x = 15 and y = 15?

x >= y

TRUE

FALSE

ERROR

Answer explanation

15 >= 15 is true because 15 is equal to 15, so the condition is satisfied.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If x = 8 and y = 5, what is the result of this comparison?

x < y

TRUE (1)

FALSE (0)

ERROR

Answer explanation

8 < 5 is false because 8 is greater than 5.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following expression if x = 3 and y = 3?

x != y

TRUE

FALSE

ERROR

Answer explanation

  • Explanation: 3 != 3 is false because 3 is equal to 3, so they are not different.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If x = 12 and y = 20, what will be the output of this expression?

x > y

TRUE

FALSE

ERROR

Answer explanation

12 > 20 is false because 12 is less than 20.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given x = 7 and y = 7, what is the result of this comparison?

x <= y

TRUE

FALSE

ERROR

Answer explanation

7 <= 7 is true because 7 is equal to 7, so the condition is satisfied.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the == operator do in C++?

Compares two values for equality

Compares two values for inequality

Checks if one value is greater than another

Checks if one value is less than or equal to another

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?