Quiz

Quiz

11th Grade

5 Qs

quiz-placeholder

Similar activities

Comparison operators

Comparison operators

6th - 11th Grade

9 Qs

Python Ch 1

Python Ch 1

5th Grade - University

10 Qs

Operators in C

Operators in C

9th - 12th Grade

10 Qs

Conditional statements in python

Conditional statements in python

11th - 12th Grade

10 Qs

Among Us Review Game

Among Us Review Game

11th - 12th Grade

10 Qs

#087 Topic 3.6 Video 1

#087 Topic 3.6 Video 1

11th Grade

5 Qs

APCSA - Unit 3

APCSA - Unit 3

9th - 12th Grade

10 Qs

If-Else in Java

If-Else in Java

9th - 12th Grade

10 Qs

Quiz

Quiz

Assessment

Quiz

Computers

11th Grade

Easy

Created by

VISHANT KHOBRAGADE

Used 8+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following operators has the lowest precedence?

AND

OR

NOT

NAND

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In Python statement x=a+5-b, a and  b are ________.

Operands

Expression   

Operators 

Equation

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To increase the value of x five times using an augmented assignment operator, the correct expression will be

x+=5        

x*=5       

x=x**5      

None of these

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Predict the output of following expression:

10<20<30

True

False

Partially True

Partially False

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Predict the output of following expression:

10<20>40

True

False

70

10