Data Types

Data Types

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

operatoria con enteros 8vo

operatoria con enteros 8vo

8th Grade

14 Qs

Teoremas sobre ángulos del triángulo

Teoremas sobre ángulos del triángulo

7th Grade

10 Qs

Fortalecimiento grado sexto (reporte)

Fortalecimiento grado sexto (reporte)

6th Grade

11 Qs

Miniquiz Variación Lineal

Miniquiz Variación Lineal

7th Grade

10 Qs

Exponentes y sus leyes

Exponentes y sus leyes

8th Grade

13 Qs

Sistem Persamaan Linear

Sistem Persamaan Linear

7th Grade

10 Qs

NÃO AI TO HƠN?????

NÃO AI TO HƠN?????

7th Grade

10 Qs

Math Chapter 11 Vocab - Orpurt

Math Chapter 11 Vocab - Orpurt

6th Grade

9 Qs

Data Types

Data Types

Assessment

Quiz

Mathematics

6th - 8th Grade

Practice Problem

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