Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
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
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
40 questions
Show answers
- Q1Convert the Binary number (11010111000)2 to Hex?(6B8)16(8B6)16(D70)16(07D)16120s
- Q2Convert the octal number (313)8 to Binary number?(1100100011) 2(11010011)2(1100010011) 2(11001011) 2120s
- Q3Convert the decimal number (254) 10 to Binary number?(111111110) 2(11111110)2(1001010100) 2(1111111) 2120s
- Q4How many bits are there in a Nibble?411008120s
- Q5The number of Pulse Width Modulation (PWM) pins in an Arduino UNO board is?832146120s
- Q6The 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
- Q7The instruction for setting the cursor to the 1st Row and 2nd Column is?lcd.setCursorLiquidCrystal.hlcd.beginlcd.print120s
- Q8for(pos = 0; pos < 180; pos += 1) The function of this statement is?Move from 179 degrees to 0 degree, one degree at a timeMove 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
- Q9The description of the LiquidCrystal library function is?Set up the dimensions of the LCD screen in rows and columnsSet up the pins used to communicate with the LCDSet up the order of characters loaded on the LCD screenSet up the position of the cursor on the LCD screen120s
- Q10The type of relay shown is?Single Pole Single ThrowDouble Pole Double ThrowSingle Pole Double ThrowDouble Pole Single Throw120s
- Q11An 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?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 isS1(Closed) S2(Open) S3(Closed) S4(Open)S1(Open) S2(Closed) S3(Open) S4(Closed)120s
- 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
- Q13Refer the toolbar along the top of the main editor (IDE) and state the function of the button “verify”Opens a new sketchSaves the sketch and prompts for a nameChecks sketches for errors.Opens the serial monitor in a new window120s
- Q14Block 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 nameSetup CodeComment CodeHeader CodeLoop Code120s
- Q15Choose the correct code modification required to increment the value of “ i” by 5 and print.i = i+++++;i = i5++;i = 5i++;i = i+5;120s