Data type in Programming Language

Data type in Programming Language

7th - 8th Grade

8 Qs

quiz-placeholder

Similar activities

N5 SDD - Python input and output

N5 SDD - Python input and output

7th - 11th Grade

12 Qs

Python Arithmetic Operators

Python Arithmetic Operators

8th - 9th Grade

10 Qs

Python

Python

7th - 8th Grade

12 Qs

KS4 Programming Techniques (1)

KS4 Programming Techniques (1)

8th - 10th Grade

10 Qs

Programming - Data Types

Programming - Data Types

1st - 10th Grade

10 Qs

Python Data Types

Python Data Types

8th Grade

10 Qs

Entry Level - Programming Techniques

Entry Level - Programming Techniques

8th - 9th Grade

13 Qs

Python Data types

Python Data types

5th - 12th Grade

10 Qs

Data type in Programming Language

Data type in Programming Language

Assessment

Quiz

Computers

7th - 8th Grade

Hard

Created by

Rajeswari Sasikumar

Used 18+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

5 sec • 1 pt

______________________used for words and letters;

must have speech marks / double quotes around the data

String

Integer

Float

Boolean

2.

MULTIPLE SELECT QUESTION

5 sec • 1 pt

_________________ used for whole numbers

Integer

Boolean

String

Float

3.

MULTIPLE SELECT QUESTION

5 sec • 1 pt

_________________ used for decimal number

Integer

Boolean

String

Float

4.

MULTIPLE SELECT QUESTION

5 sec • 1 pt

_________________ used to represent one of two values (True or False)

Integer

Boolean

String

Float

5.

MULTIPLE SELECT QUESTION

5 sec • 1 pt

______________ are a volatile type of storage; this means they should only be used to store information during program execution.

Variable

Constant

6.

MULTIPLE SELECT QUESTION

5 sec • 1 pt

______________ are a non-volatile type of storage, this means they can be hard coded to store information even when a program is not being executed.

Variable

Constant

7.

MULTIPLE SELECT QUESTION

5 sec • 1 pt

Name = "Aisha"

Identify the data type

Integer

Boolean

String

Float

8.

MULTIPLE SELECT QUESTION

5 sec • 1 pt

Name = input(“What is your name”)


Example for which type of data storage

Variable

Constant