NEW
Font size
WorksheetsMicrobit Quiz 1
Total questions: 8
Worksheet time: 2hrs 0mins
Processor
Compass
Push Button A and B
Battery Connector
I/O Connectors
USB
Reset
LED Grid
Battery Connector
Reset
USB
Compass
If I want to scroll string on Micro:bit what should we type?
display.show()
display.scroll()
print()
display()
How would you display a happy face?
display.show(Face.happy)
display.scroll(Image.HAPPY)
display.show(Image.HAPPY)
display.show(image.happy)
Output a string in Console?
print()
display.show()
display.scroll()
show()
What you should put at the start of the Microbit Python codes?
from microbit import*
From microbit import *
from microbit import *
Nothing
How to display the following code and show 3 times on microbit?
display.scroll("Hello Codejoy" * 3)
display.scroll("Hello Codejoy * 3")
display.scroll("Hello Codejoy") * 3
display.scroll("Hello Codejoy" + 3)
