Quiz Pemrograman Python

Quiz Pemrograman Python

11th Grade

50 Qs

quiz-placeholder

Similar activities

Their Python Exam

Their Python Exam

9th - 12th Grade

46 Qs

Python I

Python I

11th Grade

55 Qs

PYTHON PROGRAMMING - FINAL EXAM REVIEW

PYTHON PROGRAMMING - FINAL EXAM REVIEW

9th - 12th Grade

46 Qs

DASAR PYTHON

DASAR PYTHON

11th Grade

50 Qs

STRATEGI ALGORITMIK DAN PEMROGRAMAN KELAS XI

STRATEGI ALGORITMIK DAN PEMROGRAMAN KELAS XI

11th Grade

50 Qs

Week 4 - What is Python?

Week 4 - What is Python?

9th - 12th Grade

46 Qs

Penilaian Kelas XI-1

Penilaian Kelas XI-1

11th Grade

53 Qs

PCEP Questions in Python

PCEP Questions in Python

9th - 12th Grade

46 Qs

Quiz Pemrograman Python

Quiz Pemrograman Python

Assessment

Quiz

Computers

11th Grade

Easy

Created by

Heribertus Istiyanto

Used 9+ times

FREE Resource

50 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Apa yang akan dicetak oleh kode berikut? x = 5 if x > 3: print("A") else: print("B")

A

B

5

Error

Tidak ada yang dicetak

2.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Apa hasil dari kode berikut? x = 10 if x > 5: print("A") elif x == 10: print("B") else: print("C")

A

B

C

Error

Tidak ada yang dicetak

3.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Apa yang akan dicetak oleh kode berikut? x = 3 if x < 2: print("X") elif x == 3: print("Y") else: print("Z")

X

Y

Z

Error

Tidak ada yang dicetak

4.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Apa hasil dari kode berikut? x = 4 if x == 5: print("A") elif x < 5: print("B") else: print("C")

A

B

C

Error

Tidak ada yang dicetak

5.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Apa yang akan dicetak oleh kode berikut? x = 0 if x: print("True") else: print("False")

True

False

Error

0

Tidak ada yang dicetak

6.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Apa hasil dari kode berikut? for i in range(3): print(i)

0

1

2

0 1 2

Error

7.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Apa yang akan dicetak oleh kode berikut? for i in range(1, 5, 2): print(i)

1

1 3

1 2 3

2 4

Error

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?