Translate to Math

Translate to Math

9th Grade

6 Qs

quiz-placeholder

Similar activities

Preguntas sobre Estructuras Repetitivas

Preguntas sobre Estructuras Repetitivas

University

11 Qs

Listas en Python - Adecuación

Listas en Python - Adecuación

11th Grade

10 Qs

Search for Content on Methods in Java

Search for Content on Methods in Java

10th - 12th Grade

11 Qs

Arrays in C (II yr 02.07.2020)

Arrays in C (II yr 02.07.2020)

University

10 Qs

csharp

csharp

University

10 Qs

PROGRAMACIÓN

PROGRAMACIÓN

12th Grade

10 Qs

U5 Arrays/Lists Homework

U5 Arrays/Lists Homework

10th - 12th Grade

10 Qs

CTE Math

CTE Math

9th - 12th Grade

9 Qs

Translate to Math

Translate to Math

Assessment

Quiz

Computers

9th Grade

Hard

Created by

Vanessa Anderson

Used 1+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Rewrite the English description of the following expression as a Python expression: The variable x has the value 12. The variable y has the value x plus 4.

x = 12 y = x + 4

x = 12 y = 12 + 4

x = 12 y = 4 + 12

x = 12 y = 16

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Rewrite the English description of the following expression as a Python expression: The variable total_price holds the cost of num_books at price dollars per book.

total_price = num_books * price

total_price = num_books / price

total_price = price + num_books

total_price = price - num_books

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Rewrite the English description of the following expression as a Python expression: The variable sound has the value “pop”. The variable popcorn has the value “poppoppoppop”, but is assigned by only using the variable sound, multiplication, and a number.

sound * 4

'pop' * 4

4 * sound

sound + 'pop'

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Rewrite the English description of the following expression as a Python expression: The variable remain holds the remainder when 1331 is divided by 4.

remain = 1331 % 4

remain == 1331 % 4

remain = 1331 // 4

remain = mod(1331, 4)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Rewrite the English description as a Python expression: The variable num is assigned the whole number resulting from dividing 3 by 2.

num = 3/2

num = 3//2

num = int(3/2)

num = 3/2.0

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Rewrite the English description of the following expression as a Python expression: The variable num is assigned the decimal number resulting from dividing 3 by 2.

num = 3 / 2

num = 3 // 2

num = division(3, 2)

num = float(3/2)