PCEP Section 3E: Operate with strings

PCEP Section 3E: Operate with strings

12th Grade

15 Qs

quiz-placeholder

Similar activities

Python Intro 1

Python Intro 1

7th - 12th Grade

11 Qs

Mastering Python String Techniques

Mastering Python String Techniques

9th - 12th Grade

10 Qs

Python Quiz

Python Quiz

12th Grade

11 Qs

Progamming - Java Syntax

Progamming - Java Syntax

11th - 12th Grade

15 Qs

STRING MANIPULATION (PYTHON)

STRING MANIPULATION (PYTHON)

11th - 12th Grade

10 Qs

POGIL: Python Activity 1

POGIL: Python Activity 1

9th - 12th Grade

12 Qs

Python Strings

Python Strings

8th - 12th Grade

14 Qs

Exploring Python: Input and Output Essentials

Exploring Python: Input and Output Essentials

9th Grade - University

10 Qs

PCEP Section 3E: Operate with strings

PCEP Section 3E: Operate with strings

Assessment

Quiz

Computers

12th Grade

Medium

Created by

Misti McDaniel

Used 6+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

`string = "Hello, World!"`

`string = Hello, World!`

`string = 'Hello, World!`

`string = Hello, World!''`

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? ```python s = "Python" print(s[2]) ```

`t`

`y`

`h`

`o`

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which escape character is used to insert a newline in a string?

`\\`

`\n`

`\t`

`\'`

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How would you include a double quote inside a string that is enclosed by double quotes?

Use a single quote instead

Use the escape character: `\"`

Use two double quotes: `""`

It is not possible

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following creates a multi-line string in Python?

`string = "This is line 1 \n This is line 2"`

`string = '''This is line 1 This is line 2'''`

`string = "This is line 1, This is line 2"`

Both A and B

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method would you use to convert all characters in a string to uppercase?

`upper()`

`capitalize()`

`title()`

`swapcase()`

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given the string `s = "Programming"`, what is the result of `s[3:8]`?

`gramm`

`grammi`

`gram`

`rogra`

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?