Python set 1

Python set 1

9th - 12th Grade

26 Qs

quiz-placeholder

Similar activities

Python Inputs and Math 123

Python Inputs and Math 123

10th Grade

21 Qs

5th CS Python Intro Test

5th CS Python Intro Test

10th Grade

23 Qs

UTS PYTHON

UTS PYTHON

12th Grade - University

25 Qs

Python programming

Python programming

11th Grade

30 Qs

Cấu Trúc Rẽ Nhánh - Cấu Trúc Lặp

Cấu Trúc Rẽ Nhánh - Cấu Trúc Lặp

11th Grade

26 Qs

9F End of Term Python Quiz

9F End of Term Python Quiz

9th Grade

22 Qs

Class XII(Revision Tour)

Class XII(Revision Tour)

12th Grade

25 Qs

Python Course Selection

Python Course Selection

7th - 11th Grade

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