G12- Python Strings Quiz

G12- Python Strings Quiz

12th Grade

9 Qs

quiz-placeholder

Similar activities

eXtensible Markup Language

eXtensible Markup Language

12th Grade - University

12 Qs

Intro to JS: Variables & Values

Intro to JS: Variables & Values

11th Grade - University

8 Qs

Quiz sobre Manipulação de Strings com Python

Quiz sobre Manipulação de Strings com Python

12th Grade

10 Qs

PDS - 3DS  - entrada do usuário com Python

PDS - 3DS - entrada do usuário com Python

12th Grade

10 Qs

Quiz Meet 1 Mini SC Programing

Quiz Meet 1 Mini SC Programing

University

10 Qs

Python Programming Quiz

Python Programming Quiz

University

13 Qs

Aula 4 - IC

Aula 4 - IC

University

10 Qs

Refresh Python

Refresh Python

University

10 Qs

G12- Python Strings Quiz

G12- Python Strings Quiz

Assessment

Quiz

Information Technology (IT)

12th Grade

Medium

Created by

Sherin Kamel

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When are double quotations added in Python strings?

When there are words containing apostrophes.

When there are no apostrophes.

When the string is empty.

When the string is a single word.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of triple quotes in Python?

To write a single line string.

To write a paragraph in multiple lines.

To concatenate strings.

To format strings.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the index() function in Python do?

Returns the index position of a character.

Counts the number of characters in a string.

Formats a string.

Concatenates two strings.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can negative indexing be used in Python?

To select characters from the end of a string.

To select characters from the beginning of a string.

To count characters in a string.

To format strings.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the LEN function do in Python?

Counts the number of characters in a string.

Formats a string.

Finds a character in a string.

Replaces a character in a string.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of print(name [1:-1]) if name = 'Rbravo.Aleikz'?

bravo.aleik

Rbravo.Aleik

Rbravo.Alei

bravo.Aleikz

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you convert a string to uppercase in Python?

Using the upper() method.

Using the lower() method.

Using the find() method.

Using the replace() method.

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the replace function do in Python?

Replaces a word within a given string.

Finds a character in a string.

Counts the number of characters in a string.

Formats a string.

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of print('Computer' in department_name) if department_name = 'Informational Computer Technology'?

True

False

None

Error