logo

Crowdly

Individualisiertes Selbstgesteuertes Arbeiten

Looking for Individualisiertes Selbstgesteuertes Arbeiten test answers and solutions? Browse our comprehensive collection of verified answers for Individualisiertes Selbstgesteuertes Arbeiten at moodle.mm-bbs.de.

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

Welches ist das letzte Element, das von der folgenden for-Schleife ausgegeben wird?

meine_liste = [

"Apfel", "Banane", "Kirsche"]

for element in meine_liste[::-1]:

      print(element)

View this question

Wie oft wird der folgende Codeblock ausgeführt?

for i in range(3):

    print("Hallo Welt"

)

View this question

Welcher Wert wird am Ende ausgegeben?

i = 1

while i < 100:

     if i % 10 == 0:

          break

     i *= 2

print(i)

0%
0%
0%
View this question

Wie oft wird der innere while-Block ausgeführt?

i = 0

while i < 3:

     j = 0

     while j < 2:

          print("Hallo Welt")

          j += 1

     i += 1

View this question

Was ist der Endwert von x?

x = 10

while x > 5:

    x -= 2

print(x)

View this question

Wie oft wird der folgende Codeblock ausgeführt?

i = 0

while True:

    print("Hallo Welt")

    i += 1

    if i == 5:

         break

View this question

Wie oft wird "Hallo Welt" ausgegeben ?

i = 1

while i <= 3:

     print("Hallo Welt")

     i += 1

View this question

Was wird ausgegeben, wenn der Wert von x=4 ist:

if x < 3:  print("Klein"):

elif x < 5:

    print("Mittel"

else:

    print("Groß"

View this question

Was wird ausgegeben, wenn der Wert von x=5 ist:

if x > 3:

   print("Ja")

else:

   print("Nein")

View this question

Gegeben sind drei Variablen x = 2, y = 6, z = 3. Was wird ausgegeben:

if x * y > 10 and y / z == 3:

  print("X")

elif (x + z) * y >= 30 or x + y + z > 10:

  print("Y")

else:

  print("Z")

View this question

Want instant access to all verified answers on moodle.mm-bbs.de?

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