Python set 1

Python set 1

9th - 12th Grade

26 Qs

quiz-placeholder

Similar activities

Year 11 Coding concepts

Year 11 Coding concepts

10th Grade

23 Qs

Program Development - Python: Lists

Program Development - Python: Lists

8th - 10th Grade

22 Qs

Python_12BG

Python_12BG

11th - 12th Grade

21 Qs

Python Beginner

Python Beginner

6th - 12th Grade

30 Qs

CodeHS AP CSP Unit 3 Review

CodeHS AP CSP Unit 3 Review

11th - 12th Grade

22 Qs

Python тілінде циклдар

Python тілінде циклдар

9th - 12th Grade

22 Qs

Informatika dan pemrograman python

Informatika dan pemrograman python

12th Grade

25 Qs

Python Basics

Python Basics

8th - 10th Grade

30 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?