logo

Crowdly

Browser

Add to Chrome

ITI0102 Programmeerimise algkursus (2025/2026)

Looking for ITI0102 Programmeerimise algkursus (2025/2026) test answers and solutions? Browse our comprehensive collection of verified answers for ITI0102 Programmeerimise algkursus (2025/2026) at moodle.taltech.ee.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Mis on tulemus? 

a = "Python" 

b = "Java" 

result = "" 

for i in range(min(len(a), len(b))): 

  result += a[i] + b[-i] 

print(result)
0%
0%
0%
0%
0%
0%
View this question

Mis on tulemus?

class Car: 

    def __init__(self, name, mileage):

        self.name = name

        self.mileage = mileage

car1 = Car("Auto", 10000)

car2 = car1

car1.name = "Auto1"

car2.mileage += 500

print(f"Car {car1.name} with {car1.mileage}")

print(f"Car {car2.name} with {car2.mileage}")
0%
0%
View this question

Mis on funktsioon?

Mida funktsioon võtab sisendiks, mida ta tagastab?

Miks kasutatakse programmeerimises funktsioone?

Too näide, kuidas funktsiooni koos parameetrite ja tagastusega defineerida.

View this question

Mis vahe on konstruktoril ja spetsiaalsetel meetoditel?

0%
0%
0%
View this question

Mis juhtub, kui klassis __init__ konstruktorit ei defineerita?

0%
0%
0%
View this question

Mida teeb __eq__ meetod klassis?

0%
0%
0%
View this question

Milleks kasutatakse __del__ meetodit?

0%
0%
View this question

Millised järgnevatest väidetest on tõesed __repr__() ja __str__() meetodide kohta?

0%
0%
0%
0%
0%
View this question

Mida tähendab __len__ spetsiaalse meetodi ülekirjutamine klassis?

0%
0%
0%
View this question

Если мы хотим написать программу для имитации поведения собаки, как нам следует создать новый объект «собака»?

0%
0%
0%
100%
0%
0%
View this question

Want instant access to all verified answers on moodle.taltech.ee?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome