Python set 1

Python set 1

9th - 12th Grade

26 Qs

quiz-placeholder

Similar activities

Python GCSE

Python GCSE

10th Grade

27 Qs

Python Variables & Conditionals 311

Python Variables & Conditionals 311

9th - 12th Grade

21 Qs

While Loops Quizizz

While Loops Quizizz

9th - 12th Grade

25 Qs

python_1

python_1

5th - 12th Grade

22 Qs

Python for Absolute Beginners

Python for Absolute Beginners

8th - 12th Grade

25 Qs

Fundamentals of Programming (GCSE Computer Science AQA)

Fundamentals of Programming (GCSE Computer Science AQA)

9th - 11th Grade

22 Qs

Strings in python -1

Strings in python -1

11th Grade

22 Qs

Python set 1

Python set 1

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

jasheeda n

Used 11+ times

FREE Resource

26 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What will be the output of the following Python code? >>> str1 = 'hello' >>> str2 = ', >>> str3 = 'world' >>> str1[-1:]
olleh
hello
h
o

2.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What will be the output of the following Python statement >>>"abcd"[2:]
a
ab
cd
dc

3.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What will be the output of the following Python code? '{a}{b}{a}'.format(a='hello', b='world')
‘hello world’
‘hello’ ‘world’ ‘hello'
‘helloworldhello'
‘hello’ ‘hello’ ‘world'

4.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What will be the output of the following Python code snippet ?X=”san-foundry print(“%56s”,X)
56 blank spaces before san-foundry
56 blank spaces before san and foundry
56 blank spaces after san-foundry
no change

5.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Which of the following operators has its associativity from right to left?
+
//
%
**

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What is the result of cmp(3, 1)?
1
0
True
false

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Select all options that print hello-how-are-you
print(‘hello’, ‘how’, ‘are’, ‘you’)
print(‘hello’, ‘how’, ‘are’, ‘you’ + ‘-‘ * 4)
print(‘hello-‘ + ‘how-are-you’)
print(‘hello’ + ‘-‘ + ‘how’ + ‘-‘ + ‘are’ + ‘you')

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?