Font size
WorksheetsIPST_SE
Total questions: 20
Worksheet time: 13mins
What is the specified "board" to use in the IPST microcontroller?
ATX2
Arduino
IPST-SE
Lego
The void set up() and void loop() are the two default functions in IDE Arduino?
No, they are built-in keywords
Yes and once it is deleted the sketch encounter an error
It doesn't matter at all
Both Yes and No
The glcdpixel() is a function to print/show the pixels in the IPST monitor
True
False
mode (1); is it to rotate the mode of the screen by 90 degrees?
False
True
To change the color of the text, what syntax should apply?
settextcolor(color);
setTextColor(color);
glcdSetTextColor(color);
glcdsettextcolor(color);
By default, what is the size of the text?
1
2
3
4
The GLCDClear(); is to clear the screen?
True
False
In which area of the IDE Arduino interface where we can put the codes?
application bar
text editor
message area
serial monitor
What are the x and y in the syntax?
x and y are the coordinates where the text place.
x is simply the column and y is the row
x and y are needed to be there
none of these
The code above is to change the size of a text or character.
True
False
The syntax above is correct or incorrect?
correct
incorrect
A syntax to draw the stroke of a circle.
glcdCircle(x, y, radius, color);
glcdFillCircle( x, y, radius, color);
setCircle(x, y, radius, color);
setFillCircle(x, y, radius, color);
The syntax to fill a rectangle.
setRect(x, y, width, height, color);
setFillRect(x, y, width, height, color);
glcdRect(x, y, width, height, color);
glcdFillRect(x, y, width, height, color);
How many rows and columns that the glcd can show in text mode?
16 x 21
128 x 160
150 x 170
21 x 16
How many pixels that the glcd can show in graphic mode?
128 x 160
16 x 21
140 x 170
200 x 300
What do you call this button in the Arduino Interface?
Upload
Verify
Save
Create new file
The blue LED indicator, indicates _______________.
the connection of the USB cable to the computer.
the mainboard is ON
nothing, it just an accessory
part of the board
What happen to the red LED indicator if the program upload to the microcontroller?
nothing
whistling
buzzing
blinking
From the image, what mode of the glcd has been used?
mode 2
mode 1
mode 3
none of these
What is the difference between void setup and void loop
