Python Quiz - Till Basic String

Python Quiz - Till Basic String

University

100 Qs

quiz-placeholder

Similar activities

*ИКТ*

*ИКТ*

University

100 Qs

Python Programming Boot Camp I

Python Programming Boot Camp I

University

100 Qs

Professional IT Practice 25

Professional IT Practice 25

11th Grade - University

100 Qs

CST8132

CST8132

University

96 Qs

Java Fundamental Test 01

Java Fundamental Test 01

University

96 Qs

22CA2015 - Mobile Hacking - Surprise Quiz II

22CA2015 - Mobile Hacking - Surprise Quiz II

University

98 Qs

Fundamentals of IoT Quiz

Fundamentals of IoT Quiz

University

101 Qs

IWT Quiz - 01

IWT Quiz - 01

University

100 Qs

Python Quiz - Till Basic String

Python Quiz - Till Basic String

Assessment

Quiz

Computers

University

Hard

Created by

Mayank Saxena

Used 5+ times

FREE Resource

100 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the boolean value of expression: (5 > 3)?
True
False
1
0

Answer explanation

5>3 evaluates to True.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is a valid 'for' loop header in Python?
for i in range(3):
for(i=0;i<3;i++):
for i = 0 to 2:
loop i in 3:

Answer explanation

Python uses 'for i in range(n):'.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement executes when the 'if' condition is false and no 'elif' matches?
else block
finally block
catch block
then block

Answer explanation

else executes when preceding conditions are false.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a Python numeric type?
int
list
set
tuple

Answer explanation

int is a numeric type.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator assigns a value to a variable?
==
=
:=
->

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is valid to check inequality?
!=
<>
!==

Answer explanation

!= is inequality in Python.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is the correct 'else if' keyword in Python?
elif
elseif
else if
elsif

Answer explanation

Python uses 'elif'.

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?