C# Operators

C# Operators

10th Grade

25 Qs

quiz-placeholder

Similar activities

Coding Karel 2

Coding Karel 2

KG - University

20 Qs

Skill Competition Quiz 2024

Skill Competition Quiz 2024

10th Grade - University

20 Qs

Operator Aritmetika dan Perbandingan

Operator Aritmetika dan Perbandingan

10th Grade

20 Qs

Grade 11 Final Exam

Grade 11 Final Exam

9th - 11th Grade

20 Qs

Processing- The CPU Quiz

Processing- The CPU Quiz

10th Grade - University

20 Qs

CSS 2

CSS 2

1st - 12th Grade

20 Qs

Photoshop

Photoshop

9th - 12th Grade

20 Qs

Ulangan Harian Analisis Data 8C

Ulangan Harian Analisis Data 8C

8th Grade - University

20 Qs

C# Operators

C# Operators

Assessment

Quiz

Computers

10th Grade

Practice Problem

Hard

Created by

Michael Atienza

Used 12+ times

FREE Resource

AI

Enhance your content in a minute

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

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

You are writing a program to determine if a user's input int age is eligible for a senior discount (age 60 or older). Which of the following conditions would you use?

age > 59

age >= 60

age == 60

age < 60

2.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

You have two variables int x = 10; and int y = 5;. You want to check if x is greater than twice the value of y. Which of the following expressions should you use?

x > 2 * y

x == 2 * y

x < 2 * y

x >= 2 * y

3.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

  1. You are developing a program to compare two strings string str1 and string str2. You want to check if str1 is lexicographically greater than str2. Which of the following expressions would you use?

str1 > str2

str1 == str2

str1 < str2

str1 != str2

4.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

You have a boolean variable bool isRainy = true; and want to check if it's not raining. Which of the following expressions should you use?

isRainy

!isRainy

isRainy == true

isRainy != false

5.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

You are validating user input for a positive integer int num. You want to ensure that num is greater than zero. Which of the following conditions would you use?

num >= 0

num == 0

num < 0

num > 0

6.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

In a game, you want to check if the player's score int playerScore is at least 100 points to qualify for the next level. Which of the following conditions should you use?

playerScore > 100

playerScore >= 100

playerScore == 100

playerScore < 100

7.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

You have two variables double price = 25.50; and double budget = 50.00;. You want to check if the price is within the budget. Which of the following expressions should you use?

price == budget

price >= budget

price > budget

price <= budget

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

Already have an account?