python-1: Lektion 5

python-1: Lektion 5

Assessment

Flashcard

Education

8th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

7 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Welche Funktion nutzen wir, um User-Eingaben zu bekommen?

Back

input()

2.

FLASHCARD QUESTION

Front

Was wird die Terminal-Ausgabe sein?
x = 3.23
print("x")

Back

x

3.

FLASHCARD QUESTION

Front

Was ist das Ergebnis dieses Codes?
x="1"
y="2"
y = x+y
print(y)

Back

12

4.

FLASHCARD QUESTION

Front

Was ist die Ausgabe folgenden Codes:
x = bool(4)
print(x)

Back

True

5.

FLASHCARD QUESTION

Front

Welchen Wert wird x nach folgendem Code haben?
x = 3
x += 2
x = x * 2 - 1
x = x // 3

Back

3

6.

FLASHCARD QUESTION

Front

Welchen Wert wird x nach folgendem Code haben? x = len("Coding") + 2 * len("Gia" + "nts")

Back

18

7.

FLASHCARD QUESTION

Front

Ist python eine Scriptsprache?

Back

Ja