wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

IPST_SE

Total questions: 20

Worksheet time: 13mins

Name
Class
Date
1.

What is the specified "board" to use in the IPST microcontroller?

a)

ATX2

b)

Arduino

c)

IPST-SE

d)

Lego

2.

The void set up() and void loop() are the two default functions in IDE Arduino?

a)

No, they are built-in keywords

b)

Yes and once it is deleted the sketch encounter an error

c)

It doesn't matter at all

d)

Both Yes and No

3.

The glcdpixel() is a function to print/show the pixels in the IPST monitor

a)

True

b)

False

4.

mode (1); is it to rotate the mode of the screen by 90 degrees?

a)

False

b)

True

5.

To change the color of the text, what syntax should apply?

a)

settextcolor(color);

b)

setTextColor(color);

c)

glcdSetTextColor(color);

d)

glcdsettextcolor(color);

6.

By default, what is the size of the text?

a)

1

b)

2

c)

3

d)

4

7.

The GLCDClear(); is to clear the screen?

a)

True

b)

False

8.

In which area of the IDE Arduino interface where we can put the codes?

a)

application bar

b)

text editor

c)

message area

d)

serial monitor

9.

What are the x and y in the syntax?

a)

x and y are the coordinates where the text place.

b)

x is simply the column and y is the row

c)

x and y are needed to be there

d)

none of these

10.

The code above is to change the size of a text or character.

a)

True

b)

False

11.

The syntax above is correct or incorrect?

a)

correct

b)

incorrect

12.

A syntax to draw the stroke of a circle.

a)

glcdCircle(x, y, radius, color);

b)

glcdFillCircle( x, y, radius, color);

c)

setCircle(x, y, radius, color);

d)

setFillCircle(x, y, radius, color);

13.

The syntax to fill a rectangle.

a)

setRect(x, y, width, height, color);

b)

setFillRect(x, y, width, height, color);

c)

glcdRect(x, y, width, height, color);

d)

glcdFillRect(x, y, width, height, color);

14.

How many rows and columns that the glcd can show in text mode?

a)

16 x 21

b)

128 x 160

c)

150 x 170

d)

21 x 16

15.

How many pixels that the glcd can show in graphic mode?

a)

128 x 160

b)

16 x 21

c)

140 x 170

d)

200 x 300

16.

What do you call this button in the Arduino Interface?

a)

Upload

b)

Verify

c)

Save

d)

Create new file

17.

The blue LED indicator, indicates _______________.

a)

the connection of the USB cable to the computer.

b)

the mainboard is ON

c)

nothing, it just an accessory

d)

part of the board

18.

What happen to the red LED indicator if the program upload to the microcontroller?

a)

nothing

b)

whistling

c)

buzzing

d)

blinking

19.

From the image, what mode of the glcd has been used?

a)

mode 2

b)

mode 1

c)

mode 3

d)

none of these

20.

What is the difference between void setup and void loop

4 lines