Data Types

Data Types

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

Ratios and Proportions Review

Ratios and Proportions Review

6th Grade - University

10 Qs

Quick Check 4.6 - 4.7: Scatter Plots & Line of Best Fit

Quick Check 4.6 - 4.7: Scatter Plots & Line of Best Fit

7th - 9th Grade

10 Qs

Intro to Python

Intro to Python

KG - University

10 Qs

Line of best Fit

Line of best Fit

8th Grade

10 Qs

Interpreting Graphs

Interpreting Graphs

8th - 9th Grade

14 Qs

Circle Graph

Circle Graph

6th Grade

10 Qs

Data Displays

Data Displays

6th - 8th Grade

10 Qs

Fractional Exponents Practice 1/13

Fractional Exponents Practice 1/13

8th Grade

12 Qs

Data Types

Data Types

Assessment

Quiz

Mathematics

6th - 8th Grade

Medium

Created by

Lucy Stephenson

Used 4+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an INTEGER?

a whole number

a number capable of containing a fractional part 

a single character

a sequence of zero or more characters

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a REAL data type?

a whole number

a number capable of containing a fractional part 

a single character

a sequence of zero or more characters

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a CHAR data type?

a number capable of containing a fractional part

a whole number

a sequence of zero or more characters

a single character

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a STRING data type?

a whole number

a number capable of containing a fractional part

a sequence of zero or more characters

the logical values TRUE and FALSE

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a BOOLEAN data type?

a whole number

the logical values TRUE and FALSE

a sequence of zero or more characters

a single character

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following code prints the data type of x,

what data type would that be?

x = 1

print(type(x))

REAL/FLOAT

INTEGER

BOOLEAN

STRING

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following code prints the data type of x,

what data type would that be?

x = "I love coding!"

print(type(x))

REAL/FLOAT

STRING

BOOLEAN

INTEGER

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following code prints the data type of x,

what data type would that be?

x = 99.9

print(type(x))

BOOLEAN

STRING

REAL/FLOAT

INTEGER

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following code prints the data type of x,

what data type would that be?

x = False

print(type(x))

BOOLEAN

CHAR

REAL/FLOAT

INTEGER