PCAP String Practice

PCAP String Practice

11th Grade

22 Qs

quiz-placeholder

Similar activities

CodeHS 3.1 Boolean Expressions-4.2 For Loops Review

CodeHS 3.1 Boolean Expressions-4.2 For Loops Review

9th - 12th Grade

21 Qs

String Manipulation (Python)

String Manipulation (Python)

9th - 12th Grade

17 Qs

python_1

python_1

5th - 12th Grade

22 Qs

LETS PLAY QUIZ - PYTHON CBSE CLASS XII

LETS PLAY QUIZ - PYTHON CBSE CLASS XII

11th - 12th Grade

20 Qs

Python Strings

Python Strings

11th Grade

21 Qs

Assessment #2

Assessment #2

5th Grade - Professional Development

20 Qs

Python Basics Review (TSK)

Python Basics Review (TSK)

9th - 12th Grade

20 Qs

Python output based questions

Python output based questions

10th - 11th Grade

20 Qs

PCAP String Practice

PCAP String Practice

Assessment

Quiz

Computers

11th Grade

Hard

Created by

Khalil Youssef

Used 2+ times

FREE Resource

22 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

print("12"*3)
What would this print?
36
121212
24
12*3

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the output be from the following code?
print("Hello" + "world" + "today")
Helloworldtoday
Hello world today
"Hello" "world" "today"
SyntaxError

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the output be from the following code?
print("Hello world!" * 2)
TypeError
Hello world world!
Hello world!Hello world!
Hello world! * 2

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is printed by the following statement?
print("A" in "APCSP")
True
False
Error

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is printed by the following statement?
print("" in "APCSP")
True
False
Error

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is printed by the following statement?
print("P" not in "APCSP")
True
False
Error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code?

print("D", end = ' ')

print("C", end = ' ')

print("B", end = ' ')

print("A", end = ' ')

DCBA

A,B,C,D

D C B A

D

C

B

A

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?