Coding Check In

Coding Check In

9th Grade

5 Qs

quiz-placeholder

Similar activities

UDA-python-variables

UDA-python-variables

5th - 9th Grade

5 Qs

Khởi động

Khởi động

10th - 12th Grade

5 Qs

Python Unit 3 QUIZ - Graded

Python Unit 3 QUIZ - Graded

10th - 12th Grade

10 Qs

Kuiz Dasar Python

Kuiz Dasar Python

University

10 Qs

Bài tập thực hành 1 (tiết 2)

Bài tập thực hành 1 (tiết 2)

12th Grade

10 Qs

Lý Thuyết Python

Lý Thuyết Python

University

10 Qs

Python Basics Chapter 1 section 1-4

Python Basics Chapter 1 section 1-4

University

7 Qs

Learn Python 3 - Lesson 10 Introduction to Classes

Learn Python 3 - Lesson 10 Introduction to Classes

11th Grade - Professional Development

7 Qs

Coding Check In

Coding Check In

Assessment

Quiz

Mathematics

9th Grade

Medium

Created by

Erin Woito

Used 2+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the data type of the value 3.14 in Python?

  • A) str

  • B) int

  • C) float

str

int

float

variable

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the input() function do in Python?

  • Displays text on the screen

  • Takes user input as a string

  • Converts integers to strings

Calculates the answer to a math problem

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to print the variable name?

  • print("name")

  • print(name)

  • print('name')

Print("name")

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following code print?

print("Python is fun!")

  • "Python is fun!"

  • Python is fun!

  • 'Python is fun!'

print("Python is fun!")

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the + operator do when used with strings in Python?

  • Adds the numerical values

  • Multiplies the strings

It means and

  • Concatenates the strings