Python Beginner2

Python Beginner2

9th Grade

25 Qs

quiz-placeholder

Similar activities

computers

computers

9th Grade

25 Qs

GDSC DEU & PYTHON

GDSC DEU & PYTHON

9th - 12th Grade

30 Qs

Akış Diyagramı

Akış Diyagramı

7th - 12th Grade

23 Qs

Sınava Hazırlık

Sınava Hazırlık

9th Grade

20 Qs

ODTÜ GV Özel Lisesi_HZ Bilgisayar Bilimi 2. Dönem . 1. Sınav HZ

ODTÜ GV Özel Lisesi_HZ Bilgisayar Bilimi 2. Dönem . 1. Sınav HZ

7th - 9th Grade

20 Qs

Python Exercises 2

Python Exercises 2

9th Grade

22 Qs

Genel tekrar python

Genel tekrar python

9th Grade

25 Qs

Python

Python

9th Grade

20 Qs

Python Beginner2

Python Beginner2

Assessment

Quiz

Computers

9th Grade

Medium

Created by

Emsal Academy

Used 6+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

Aşağıdaki kodun çıktısı nedir?

print (9//2)

4

4,5

1

True

2.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

Aşağıdaki programın çıktısı nedir: 

i = 0

while i < 3:

       print (i)

       i++

 

1 2 3

0 0 0

0 1 2 3

0 1 2

3.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

İfadenin çıktısı nedir: print (3*1**3)

3

9

27

81

4.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

Aşağıdaki programın çıktısı nedir: 

print (0.1 + 0.2 == 0.3)

Not

and

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

Aşağıdaki programın çıktısı nedir: 

print (1 + 2 == 3)

Not

and

True

False

6.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

Aşağıdaki kodun çıktısı nedir?

var1 = 1

var2 = 2

var3 = "3"

print(var1 + var2 + var3)

6

33

123

Hata. Sayılar ve dizeler arasında operatörlerin karıştırılması desteklenmez

7.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

Aşağıdaki kodun çıktısı nedir?

for i in range(10, 15, 1):

print( i, end=', ')

10, 11, 12, 13, 14,

10, 11, 12, 13, 14, 15,

10, 11, 12, 13, 14, 15, 16

10, 11, 12, 13

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?