Python String Operations Quiz

Python String Operations Quiz

University

58 Qs

quiz-placeholder

Similar activities

QUIZ Pemrograman Python 1

QUIZ Pemrograman Python 1

University

60 Qs

T-SQUAD

T-SQUAD

University

60 Qs

Programming 2  - 231SJ

Programming 2 - 231SJ

University

53 Qs

Programación

Programación

KG - Professional Development

60 Qs

J277/02 Computational thinking, algorithms and programming

J277/02 Computational thinking, algorithms and programming

9th Grade - University

56 Qs

Python-1

Python-1

University

55 Qs

Advanced programing w\ Python (Ep1)

Advanced programing w\ Python (Ep1)

University

61 Qs

PYTHON PROGRAMMING PRELIM-EXAM

PYTHON PROGRAMMING PRELIM-EXAM

University

60 Qs

Python String Operations Quiz

Python String Operations Quiz

Assessment

Quiz

Computers

University

Hard

Created by

ANKUSH JOSHI

Used 1+ times

FREE Resource

58 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? print("Python"[0])

P

y

t

Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to define a string in Python?

str = 'Hello'

str = "Hello"

str = '''Hello'''

All of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you find the length of a string in Python?

len(string)

length(string)

string.size()

string.length()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you concatenate two strings in Python?

str1 + str2

str1.concat(str2)

str1.add(str2)

str1 & str2

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? print("Python" + " Programming")

PythonProgramming

Python Programming

Python + Programming

Python

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? print("Hello"[1:4])

ell

llo

Hel

lo

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of "Python"[-1]?

P

n

y

Error

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?