Operator Perbandingan dan Logika

Operator Perbandingan dan Logika

6th - 8th Grade

20 Qs

quiz-placeholder

Similar activities

ASESMEN KELAS 8

ASESMEN KELAS 8

8th Grade

20 Qs

Blockly Games

Blockly Games

8th Grade - University

23 Qs

PTS Informatika Terbuka

PTS Informatika Terbuka

8th Grade

20 Qs

Perangkat Keras

Perangkat Keras

7th Grade

20 Qs

QUIZ TIK Kelas 8

QUIZ TIK Kelas 8

8th Grade

20 Qs

Pengantar Laboratorium Maya

Pengantar Laboratorium Maya

7th Grade

15 Qs

Berpikir Komputasional Informatika Kelas 8 2526

Berpikir Komputasional Informatika Kelas 8 2526

8th Grade

15 Qs

Quiz Informatika Genap KLs 7

Quiz Informatika Genap KLs 7

7th Grade - University

15 Qs

Operator Perbandingan dan Logika

Operator Perbandingan dan Logika

Assessment

Quiz

Information Technology (IT)

6th - 8th Grade

Hard

Created by

frsk ysf

Used 1+ 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?