test2

test2

University

9 Qs

quiz-placeholder

Similar activities

Lý thuyết về Python

Lý thuyết về Python

3rd Grade - University

10 Qs

PYTHON BASICS

PYTHON BASICS

University

7 Qs

Data Structure 1

Data Structure 1

University

10 Qs

Java Arrays

Java Arrays

5th Grade - University

10 Qs

Python Final preparation

Python Final preparation

University

10 Qs

Списки. PYTHON

Списки. PYTHON

3rd Grade - University

10 Qs

Lección 3 - Lenguaje de programación: Python

Lección 3 - Lenguaje de programación: Python

University

10 Qs

C Language Basic Quiz

C Language Basic Quiz

7th Grade - Professional Development

10 Qs

test2

test2

Assessment

Quiz

Other

University

Medium

Created by

Nan Akl

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A=[1,2,3,4]

what is the data type

bool

list

str

int

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

B="Bahrain"

what is the data type of B

bool

list

int

str

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

B=True

what is the data type of B

bool

list

int

str

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

c=2

x=5

y=c+x

what is data type of y

bool

list

int

str

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

c=2.5

x=5

y=c+x

what is data type of y

bool

list

int

float

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

c=2.5

x=5

y=c+x

what is the out put of the following staments

7.5

7

11

5

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

b="welcome"

x="python"

print(b+ " " +x)

what is the out put of the following statments

welcome

python

welcome python

welcompython

8.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

ما هو ناتج العملية التالية

g=28

y=5

print(g//Y)

25

30

5

35

9.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

ما هو ناتج العملية التالية

g=28

y=5

print(g%Y)

3

30

5

35