Python Çalışması

Python Çalışması

7th Grade

5 Qs

quiz-placeholder

Similar activities

9-сынып. Python массив.

9-сынып. Python массив.

1st - 9th Grade

10 Qs

Bilişim Teknolojileri

Bilişim Teknolojileri

5th - 12th Grade

10 Qs

6-7 2.dön 1.yazılı hazırlık

6-7 2.dön 1.yazılı hazırlık

7th Grade

10 Qs

Dosya Yönetimi

Dosya Yönetimi

5th - 8th Grade

5 Qs

Python 2D Array

Python 2D Array

7th Grade

10 Qs

Python Inputs

Python Inputs

7th - 8th Grade

10 Qs

Python Math

Python Math

1st - 12th Grade

10 Qs

Guess the Car Logo's

Guess the Car Logo's

2nd - 8th Grade

10 Qs

Python Çalışması

Python Çalışması

Assessment

Quiz

Computers

7th Grade

Medium

Created by

Kenan Çağlayan

Used 30+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Aşağıdaki kodlar hangi program için yazılmıştır?


import random

while True:

rolled_num = random.randint(1,6)

print("The dice rolled and you got: ", rolled_num)

input("Press any key to roll again.")

Zar atma

Rastgele harf bulma

Toplama yapma

Çarpma yapma

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Aşağıdaki kodlar hangi program için yazılmıştır?


import random

n = random.randint(1, 99)

guess = int(input("Enter an integer from 1 to 99: "))

while n != "guess":

print

if guess < n:

print ("guess is low")

guess = int(input("Enter an integer from 1 to 99: "))

elif guess > n:

print ("guess is high")

guess = int(input("Enter an integer from 1 to 99: "))

else:

print ("you guessed it!")

break

print

Zar atma

Sayı tahmini

Rastgele harf bulma

İsim tahmini

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

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


a=4

print (a)

b=12+5

print (b)

c=b%a

print (c)

4

17

4%17

4

17

b%a

a

b

c

4

17

1

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Aşağıdaki fonksiyon kullanımı ile ilgili kodların çıktısı hangisi olabilir?


def kayit(isim, soyisim, işsis, şehir):

print("-"*30)

print("isim : ", isim)

print("soyisim : ", soyisim)

print("işletim sistemi: ", işsis)

print("şehir : ", şehir)

print("-"*30)

kayit("Fırat", "Özgül", "Ubuntu", "İstanbul")

isim : Fırat

soyisim : Özgül

işletim sistemi: Ubuntu

Fırat

Özgül

Ubuntu

İstanbul

isim : Fırat

soyisim : Özgül

işletim sistemi: Ubuntu

şehir : İstanbul

Fırat, Özgül, Ubuntu, İstanbul

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Aşağıdaki fonksiyon kullanımı ile ilgili kodların çıktısı hangisi olabilir?


def fonk(n):

if n < 0:

return 'eksi değerli sayı olmaz!'

else:

return n

f = fonk(-5)

print(f)

-5

eksi değerli sayı olmaz!

f

kod hata verir