WORKSHEET ON TEXT HANDLING IN PYTHON - 1

WORKSHEET ON TEXT HANDLING IN PYTHON - 1

11th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

Python Functions

Python Functions

12th Grade

15 Qs

Python Testing

Python Testing

9th - 12th Grade

10 Qs

Bài kiểm tra 15'

Bài kiểm tra 15'

12th Grade - University

10 Qs

JS Practice Array & Function

JS Practice Array & Function

9th - 12th Grade

10 Qs

Parts of a Computer

Parts of a Computer

11th Grade

15 Qs

Python String Slice

Python String Slice

4th Grade - University

10 Qs

Data Representation - Hexadecimal Number

Data Representation - Hexadecimal Number

3rd - 12th Grade

10 Qs

while and Loop

while and Loop

6th - 12th Grade

10 Qs

WORKSHEET ON TEXT HANDLING IN PYTHON - 1

WORKSHEET ON TEXT HANDLING IN PYTHON - 1

Assessment

Quiz

Computers

11th - 12th Grade

Hard

Created by

RANJITA SARKAR

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To concatenate two strings to a third what statements are applicable?

a) s3 = s1 . s2

b) s3 = s1.add(s2)

c) s3 = s1.__add__(s2)

d) s3 = s1 * s2

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code snippet?

print('abcdefcdghcd'.split('cd', 2))

a) [‘ab’, ‘ef’, ‘ghcd’]

b) [‘ab’, ‘efcdghcd’]

c) [‘abcdef’, ‘ghcd’]

d) none of the mentioned

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code snippet?

print('ab\ncd\nef'.splitlines())

a) [‘ab’, ‘cd’, ‘ef’]

b) [‘ab\n’, ‘cd\n’, ‘ef\n’]

c) [‘ab\n’, ‘cd\n’, ‘ef’]

d) [‘ab’, ‘cd’, ‘ef\n’]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code snippet?

print('Ab!2'.swapcase())

a) AB!@

b) ab12

c) aB!2

d) aB1@

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code snippet?

print('ab cd ef'.title())

a) Ab cd ef

b) Ab cd eF

c) Ab Cd Ef

d) None of the mentioned

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code snippet?

print('ab cd-ef'.title())

a) Ab cd-ef

b) Ab Cd-ef

c) Ab Cd-Ef

d) None of the mentioned

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code snippet?

print('abcd'.translate('a'.maketrans('abc', 'bcd')))

a) bcde

b) abcd

c) error

d) bcdd

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?