string

string

11th Grade

12 Qs

quiz-placeholder

Similar activities

Python Basics

Python Basics

KG - University

16 Qs

Python Strings

Python Strings

8th - 12th Grade

14 Qs

Python - Quiz

Python - Quiz

9th - 11th Grade

17 Qs

strings

strings

11th Grade

15 Qs

python String and comment

python String and comment

3rd Grade - University

13 Qs

Exploring Python: Input and Output Essentials

Exploring Python: Input and Output Essentials

9th Grade - University

10 Qs

Python Module

Python Module

10th - 12th Grade

17 Qs

Grade 12-Python selection&iteration

Grade 12-Python selection&iteration

11th - 12th Grade

15 Qs

string

string

Assessment

Quiz

Computers

11th Grade

Medium

CCSS
L.2.2C

Standards-aligned

Created by

Sarika Kaushal

Used 22+ times

FREE Resource

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the output be from the following code?
print("3+4")
7
3+4
34
SyntaxError

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the output be from the following code?
print(9/3)
3
3.0
9/3
SyntaxError

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image
What letter will be printed on the screen after running this code:
e
x
t
Nothing prints

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is printed by the following statements?

s = "programming in Python"

print(len(s))

20

21

22

nothing - there is an error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What characters are printed by the following statements?

s = "APCSP2018"

for idx in range(len(s)):

if idx % 2 == 0:

print(s[idx])

ACP08

PS21

APCSP2018

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?