Python Strings

Python Strings

Professional Development

10 Qs

quiz-placeholder

Similar activities

Quiz Epson

Quiz Epson

KG - Professional Development

8 Qs

Quest 2 (Digital Teacher)

Quest 2 (Digital Teacher)

Professional Development

14 Qs

2.3-4-5 Calling a (non-)Void Method (with Parameters)

2.3-4-5 Calling a (non-)Void Method (with Parameters)

Professional Development

14 Qs

Basic syntax

Basic syntax

Professional Development

10 Qs

python

python

Professional Development

12 Qs

Kuis Training New Product Jan-24

Kuis Training New Product Jan-24

Professional Development

15 Qs

Art and Design at St. Benet's

Art and Design at St. Benet's

Professional Development

11 Qs

Python Turtle

Python Turtle

KG - Professional Development

11 Qs

Python Strings

Python Strings

Assessment

Quiz

Education

Professional Development

Hard

Created by

Meena Natarajan

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following statement are true?

Strings....

are enclosed by single quotation marks only

are enclosed by double quotation marks only

Can include letters, digits, special characters, and spaces

can include letters, digits, special characters, but not spaces

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Select the correct output of the following String operations

strOne = str("pynative")

strTwo = "pynative"

print(strOne == strTwo)

print(strOne is strTwo)

False False

True True

True False

False True

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following string operations?

str = "My salary is 7000";

print(str.isalnum())

True

False

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which method should I use to convert String "welcome to the beautiful world of python" to "Welcome To The Beautiful World Of Python"

capitalize()

title()

upper()

lower()

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code?

str1 = "My salary is 7000";

str2 = "7000"

print(str1.isdigit())

print(str2.isdigit())

False

True

False

False

True

False

True

True

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Guess the correct output of the following code.

str1 = "PYnative"

print(str1[1:4], str1[:5], str1[4:], str1[0:-1], str1[:-1])

PYn PYnat ive PYnativ vitanYP

Yna PYnat tive PYnativ vitanYP

Yna PYnat tive PYnativ PYnativ

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Select the correct output of the following String operations

str = "my name is James bond";

print (str.capitalize())

My Name Is James Bond

TypeError: unsupported operand type(s) for * or pow(): 'str' and 'int'

My name is james bond

mY NAME IS JAMES BOND

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?