Python Button Logic Quiz

Python Button Logic Quiz

6th - 10th Grade

29 Qs

quiz-placeholder

Similar activities

8th Grade Semester Exam

8th Grade Semester Exam

8th Grade

24 Qs

Computer Skills Pretest

Computer Skills Pretest

6th - 8th Grade

24 Qs

FINAL_QUIZ_TERM2_Authorware

FINAL_QUIZ_TERM2_Authorware

9th - 10th Grade

30 Qs

SOAL LATIHAN SEM. TIK

SOAL LATIHAN SEM. TIK

8th Grade

25 Qs

Micro:bit

Micro:bit

6th Grade

30 Qs

Review 3 - Micro:bit and Makecode

Review 3 - Micro:bit and Makecode

6th Grade

25 Qs

Introduction - Lego Spike Prime - Review

Introduction - Lego Spike Prime - Review

7th Grade

30 Qs

Mbot2 and Mblock Review

Mbot2 and Mblock Review

3rd - 6th Grade

30 Qs

Python Button Logic Quiz

Python Button Logic Quiz

Assessment

Quiz

Computers

6th - 10th Grade

Medium

Created by

Fadi Fadi

Used 2+ times

FREE Resource

29 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following code display when Button A is pressed?

if button_a.is_pressed():

display.show("A")

An icon

"A"

Nothing

"B"

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following correctly checks if Button B is pressed?

if button_b.press():

if button_b == True:

if button_b.is_pressed():

if button_b.pressed():

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will happen if both Button A and Button B are pressed in the following code?

if button_a.is_pressed():

display.show("A")

elif button_b.is_pressed():

display.show("B")

"B" will be displayed

Nothing will be displayed

Both "A" and "B" will be displayed

"A" will be displayed

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following code display if no buttons are pressed? if button_a.is_pressed(): display.show("A") elif button_b.is_pressed(): display.show("B") else: display.show("?")

"B"

"?"

Nothing

"A"

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which code snippet will display a happy icon if Button A is pressed?

if button_a.is_pressed(): display.show(Image.HAPPY)

if button_a.is_pressed() == True: display.show(Image.HAPPY)

if button_a.is_pressed(); display.show(Image.HAPPY)

if button_a.pressed(): display.show(Image.HAPPY)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code when Button B is pressed?

if button_a.is_pressed():

display.show("A")

else: display.show("B")

"A"

"B"

Nothing

"A" and "B"

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the Micro display when both buttons are pressed in this code?

if button_a.is_pressed():

display.show("A")

if button_b.is_pressed():

display.show("B")

"A"

"B"

Both "A" and "B" at the same time

"A" followed by "B"

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?