Python Quiz: Hello World

Python Quiz: Hello World

3rd Grade

8 Qs

quiz-placeholder

Similar activities

C# lesson10

C# lesson10

1st - 10th Grade

10 Qs

Grade 3

Grade 3

3rd Grade

10 Qs

Computer Quiz by Tr.Sadaf

Computer Quiz by Tr.Sadaf

1st - 5th Grade

10 Qs

CSS Quiz

CSS Quiz

1st - 3rd Grade

10 Qs

sieci_początek

sieci_początek

1st Grade - Professional Development

10 Qs

MS Paint

MS Paint

1st - 4th Grade

13 Qs

Computer Basics

Computer Basics

KG - 3rd Grade

10 Qs

Grade 2 - MS Word Interface

Grade 2 - MS Word Interface

1st - 4th Grade

10 Qs

Python Quiz: Hello World

Python Quiz: Hello World

Assessment

Quiz

Computers

3rd Grade

Medium

Created by

Stephanie Pocci

Used 3+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the main purpose of programming languages?

To build houses

To play music

To instruct computers

To cook food

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the main goal of the class?

To learn how to speak and write

To learn how to program and think logically

To learn how to draw

To learn how to cook

3.

MULTIPLE SELECT QUESTION

1 min • 1 pt

Which is a correct way to write "Hello World" in Python?

print('Hello World')

print("Hello World")

print(Hello, World)

print("Hello, World")

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does end=" " do in the print() function?

Adds the word inside the " " at the end of the line

Adds a space at the end

Adds a comma at the end

Adds a period at the end

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the purpose of using end="" in the print() function?

To add a period at the end

To add a space at the end

To add a comma at the end

To keep it from skipping a line or add a word at the end

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will the output be for the code:

print("Cat", end=" ")

print("Dog")

Cat Dog

CatDog

Cat Dog

Catdog

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will the output be for the code:

print("Sun", end="")

print("Shine")

Sun: Shine

Sun Shine

SunShine

Sun, Shine

8.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will the following code print if the 'end' parameter is set to a single quote?

print("It's")

print("Fine")

It's
Fine

It's Fine

It'sFine

It's' Fine