Python Basics Quiz

Python Basics Quiz

6th Grade

8 Qs

quiz-placeholder

Similar activities

PYTHON (FOR LOOP)

PYTHON (FOR LOOP)

1st - 10th Grade

10 Qs

Java Coding Club

Java Coding Club

3rd - 7th Grade

10 Qs

computer science league

computer science league

6th - 12th Grade

10 Qs

Python Programming Basics

Python Programming Basics

6th - 12th Grade

9 Qs

AstepI Quiz 2

AstepI Quiz 2

4th - 8th Grade

10 Qs

KODEKIDDO HACK #MLH3

KODEKIDDO HACK #MLH3

4th Grade - University

10 Qs

Python Basics and Syntax

Python Basics and Syntax

6th - 12th Grade

9 Qs

Basic Python

Basic Python

6th - 12th Grade

9 Qs

Python Basics Quiz

Python Basics Quiz

Assessment

Quiz

Computers

6th Grade

Hard

Created by

Richard Jones

Used 161+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to assign the value 10 to a variable named `age`?

A) age == 10

B) age = 10

C) 10 = age

D) "age" = 10

2.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following is a string?

A) "123"

B) 123

C) 12.3

D) 1+2+3

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you print the word "Hello" in Python?

A) print(Hello)

B) print("Hello")

C) echo "Hello"

D) console.log("Hello")

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following code output? `print("Fish" + "4")`

A) Fish4

B) Fish 4

C) Fish+4

D) Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function is used to get input from the user?

A) get()

B) input()

C) read()

D) fetch()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following operation: `print("8")

A) "eight"

B) 8

C) eight

D) "8"

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you convert the string "123" into an integer in Python?

A) int("123")

B) "123".int()

C) integer("123")

D) convert("123", int)

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet: `print(2 * 3)`?

A) 6

B) 8

C) 9

D) An error