Operator Perbandingan dan Logika

Operator Perbandingan dan Logika

6th - 8th Grade

20 Qs

quiz-placeholder

Similar activities

Quiz VII-2 Informatika

Quiz VII-2 Informatika

7th Grade

25 Qs

петон

петон

8th Grade

21 Qs

Mock-Up Academy Programming Online Test

Mock-Up Academy Programming Online Test

6th Grade - University

20 Qs

Ujian Algoritma dan Pemrograman Kelas 8

Ujian Algoritma dan Pemrograman Kelas 8

8th Grade

21 Qs

Ulangan Harian Kelas 4

Ulangan Harian Kelas 4

4th Grade - University

20 Qs

TIK ( 20 SOAL) ULANGAN 7B

TIK ( 20 SOAL) ULANGAN 7B

7th Grade

20 Qs

Latihan Soal Bab 1 dan 2

Latihan Soal Bab 1 dan 2

8th Grade

20 Qs

Ujian Awal Informatika Kelas 7

Ujian Awal Informatika Kelas 7

7th Grade

20 Qs

Operator Perbandingan dan Logika

Operator Perbandingan dan Logika

Assessment

Quiz

Information Technology (IT)

6th - 8th Grade

Hard

Created by

frsk ysf

Used 5+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa output dari kode berikut?

baterai = 40

sensor_ok = True

print(baterai > 50 and sensor_ok)

True
False
Error
None

Answer explanation

Ekspresi 40 > 50 bernilai False, sehingga keseluruhan False meskipun sensor_ok True.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa output dari kode berikut?

roda_kiri = 360

roda_kanan = 360

print(roda_kiri == roda_kanan)

True
False
Error
None

Answer explanation

360 == 360 bernilai True.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa output dari kode berikut?

suhu_motor = 45

print(suhu_motor < 70 and suhu_motor > 50)

True
False
Error
None

Answer explanation

45 < 70 True, tapi 45 > 50 False, sehingga and menghasilkan False.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa output dari kode berikut?

sensor_bola = False

print(not sensor_bola)

True
False
Error
None

Answer explanation

not False bernilai True.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa output dari kode berikut?

baterai = 45

mode_darurat = False

print(baterai > 50 or mode_darurat)

True
False
Error
None

Answer explanation

45 > 50 False dan mode_darurat False, sehingga or menghasilkan False.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa output dari kode berikut?

roda_kiri = 100

roda_kanan = 97

print(roda_kiri - roda_kanann <= 2)

True
False
Error
None

Answer explanation

Terjadi NameError karena variabel roda_kanann tidak didefinisikan.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa output dari kode berikut?

kamera_ok = True

lampu_ok = True

print(kamera_ok and not lampu_ok)

True
False
Error
None

Answer explanation

not lampu_ok adalah not True = False, sehingga True and False = False.

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?