placeholder image to represent content

Arduino Pcb1

Quiz by

Feel free to use or edit a copy

includes Teacher and Student dashboards

Measure skills
from any curriculum

Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.

With a free account, teachers can
  • edit the questions
  • save a copy for later
  • start a class game
  • view complete results in the Gradebook and Mastery Dashboards
  • automatically assign follow-up activities based on students’ scores
  • assign as homework
  • share a link with colleagues
  • print as a bubble sheet

Our brand new solo games combine with your quiz, on the same screen

Correct quiz answers unlock more play!

New Quizalize solo game modes
40 questions
Show answers
  • Q1
    Convert the Binary number (11010111000)2 to Hex?
    (6B8)16
    (8B6)16
    (D70)16
    (07D)16
    120s
    Edit
    Delete
  • Q2
    Convert the octal number (313)8 to Binary number?
    (1100100011) 2
    (11010011)2
    (1100010011) 2
    (11001011) 2
    120s
    Edit
    Delete
  • Q3
    Convert the decimal number (254) 10 to Binary number?
    (111111110) 2
    (11111110)2
    (1001010100) 2
    (1111111) 2
    120s
    Edit
    Delete
  • Q4
    How many bits are there in a Nibble?
    4
    1
    100
    8
    120s
    Edit
    Delete
  • Q5
    The number of Pulse Width Modulation (PWM) pins in an Arduino UNO board is?
    8
    32
    14
    6
    120s
    Edit
    Delete
  • Q6
    The correct instruction to make port D pins 1, 2, 4, 6 and 7 HIGH and other pins to LOW is?
    PORTD = B01101011;
    PORTD = B01100111;
    PORTD = B11010110;
    PORTD = B00101001;
    120s
    Edit
    Delete
  • Q7
    The instruction for setting the cursor to the 1st Row and 2nd Column is?
    lcd.setCursor
    LiquidCrystal.h
    lcd.begin
    lcd.print
    120s
    Edit
    Delete
  • Q8
    for(pos = 0; pos < 180; pos += 1) The function of this statement is?
    Move from 179 degrees to 0 degree, one degree at a time
    Move from 180 degrees to 0 degree, one degree at a time.
    Move from 0 degrees to 179 degrees, one degree at a time.
    Move from 0 degrees to 180 degrees, one degree at a time.
    120s
    Edit
    Delete
  • Q9
    The description of the LiquidCrystal library function is?
    Set up the dimensions of the LCD screen in rows and columns
    Set up the pins used to communicate with the LCD
    Set up the order of characters loaded on the LCD screen
    Set up the position of the cursor on the LCD screen
    120s
    Edit
    Delete
  • Q10
    The type of relay shown is?
    Question Image
    Single Pole Single Throw
    Double Pole Double Throw
    Single Pole Double Throw
    Double Pole Single Throw
    120s
    Edit
    Delete
  • Q11
    An H-bridge made up of four switches to control the direction of a motor is shown here. The position of switches required in the H-bridge to turn the motor clockwise is?
    Question Image
    S1(Closed) S2(Closed) S3(Closed) S4(Closed)
    S1(Open) S2(Closed) S3(Closed) S4(Open) #include <LiquidCrystal.h> The function of this Arduino code is
    S1(Closed) S2(Open) S3(Closed) S4(Open)
    S1(Open) S2(Closed) S3(Open) S4(Closed)
    120s
    Edit
    Delete
  • Q12
    #include <LiquidCrystal.h> The function of this Arduino code is
    // initialize the library with the numbers of the interface pins
    // Start LCD library
    // set up the LCD's number of columns and rows:
    // Print a message to the LCD.
    120s
    Edit
    Delete
  • Q13
    Refer the toolbar along the top of the main editor (IDE) and state the function of the button “verify”
    Question Image
    Opens a new sketch
    Saves the sketch and prompts for a name
    Checks sketches for errors.
    Opens the serial monitor in a new window
    120s
    Edit
    Delete
  • Q14
    Block of comments at the top of the sketches giving a description of what the sketch does, who wrote it etc. as listed below is known by the name
    Question Image
    Setup Code
    Comment Code
    Header Code
    Loop Code
    120s
    Edit
    Delete
  • Q15
    Choose the correct code modification required to increment the value of “ i” by 5 and print.
    Question Image
    i = i+++++;
    i = i5++;
    i = 5i++;
    i = i+5;
    120s
    Edit
    Delete
  • Q16
    An Arduino DC motor control instructions are shown below. Build and run, the result will be
    Question Image
    Show errors while uploading
    The motor should turn on for 1 second
    The motor turns on forever
    Show errors while program build
    120s
    Edit
    Delete
  • Q17
    Arduino projects create programs in the Arduino development environment and then downloaded to the Arduino board. Select such an environment from the choices given?
    Protel
    EasyEda
    Proteous
    Kicad
    120s
    Edit
    Delete
  • Q18
    void setup() {} void loop() {} the function of this do-nothing program is to
    initialize variables
    repeat the instructions
    catch and flag syntax errors
    clear out any old program
    120s
    Edit
    Delete
  • Q19
    An Arduino is a type of
    CPU
    PC
    Microcontroller
    Sensor
    120s
    Edit
    Delete
  • Q20
    The two types of input/output pins on an Arduino are
    Open and Closed
    Digital and Analog
    Digital and Virtual
    Real and Virtual
    120s
    Edit
    Delete

Teachers give this quiz to your class