Looking for IDK0044 IT alused II (kevad 2025) test answers and solutions? Browse our comprehensive collection of verified answers for IDK0044 IT alused II (kevad 2025) at moodle.taltech.ee.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
g = '123456'del g[3]Mis on g väärtus?
g = [3, 5, 1, 2, 4, 6]g.sort()Mis on g väärtus?
Loendis loend on hulk täisarve. Mis on muutuja tulem väärtus pärast selle Pythoni skripti täitmist?
v = loend[1]tulem = 1for k in range(1, len(loend), 2): if v < loend[k]: tulem = k v = loend[k]
Loendis loend on hulk andmeid. Eeldame, et andmed on sobivad, st skripti täitmisel ei teki viga.Mis on muutuja tulem väärtus pärast selle Pythoni skripti täitmist?
tulem = -10000000for k in range(len(loend)): if tulem < loend[k] and loend[k] % 2 == 0: tulem = loend[k]
c = 2 in '12345'Mis on muutuja c väärtus?
t = 'qwerty'c = t.find('t')Mis on muutuja c väärtus?
t = 'kaamelikaravaniajaja'c = t.count('a', 8)Mis on muutuja c väärtus?
Mis värvi joone joonistab funktsioon jutt nende Python 3.x käskude toimel?
from turtle import *
def jutt (a, nurk='', joon=0, värv='green'): if type(nurk)!=str: seth(nurk) if joon>0: pensize(joon) color(värv) pd(); fd(a); pu()
jutt(100, 100, 10, 'red')
def funktsiooni_tabel(): x=float(input("x0 = ")) xn=float(input("xn = ")) n=int(input("n = ")) print("Funktsiooni tabel") print("nr. x y") ## protseduuri teine pool valida pakutud variantide hulgast funktsiooni_tabel()
###########################################
Millised skriptid annavad ühesuguse väljundi?