data_type and variable in python

data_type and variable in python

7th Grade

6 Qs

quiz-placeholder

Similar activities

Fungsi Input dan Output Python

Fungsi Input dan Output Python

2nd Grade - University

10 Qs

Programming - Basic File Handling Operations

Programming - Basic File Handling Operations

3rd - 11th Grade

10 Qs

Python Intro 1

Python Intro 1

7th - 12th Grade

11 Qs

Python Basics

Python Basics

1st Grade - University

9 Qs

แบบทดสอบที่ 5 เรื่องการรับค่าในภาษาไพทอน (รายกลุ่ม)

แบบทดสอบที่ 5 เรื่องการรับค่าในภาษาไพทอน (รายกลุ่ม)

7th Grade - University

10 Qs

Python Data types

Python Data types

5th - 12th Grade

10 Qs

Programming - Data Types

Programming - Data Types

1st - 10th Grade

10 Qs

Computer Science

Computer Science

1st - 12th Grade

10 Qs

data_type and variable in python

data_type and variable in python

Assessment

Quiz

Computers

7th Grade

Hard

Created by

Shrouq Rababah

Used 7+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The data type for this value

"Mera "

is :

string

integer

float

boolean

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The data type for this value

"12"

is :

string

integer

float

boolean

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The data type for this value

1.25

is :

string

integer

float

boolean

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The data type for this value

True

is :

string

integer

float

boolean

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The output of the following sentence :

print ("welcome ")

is ?

Welcome

"welcome "

welcome

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The output of the following sentence :

int_Age = 13

str_name = "Mera“

print(Age) 

is ?

5

NameError: name 'Age' is not defined

Age