Q.1.
La placa de arduino Uno
Q.2.
Which symbol ends a statement?
Q.3.
Which of the following is true about comments added in the Arduino code?
Q.4.
What component do you need to add to a circuit in order to make the servo motor spin?
Q.5.
A soft potentiometer works to vary resistance by applying ________ to different points of it.
Q.6.
The Piezzo buzzer works by applying __________ to it at a rate ofper second.
Q.7.
DigitalWrite(LOW); turns the light
Q.8.
Delay(5000); stands for
Q.9.
Serial.flush()Serial.flush()Serial.flush() means?
Q.10.
blinkLED(12,100)blinkLED(12,100)blinkLED(12, means?
Q.11.
HIGH)HIGH means?
Q.12.
Which means keep going forever?void setup() { pinMode(OUTPUT); }void loop() { digitalWrite(HIGH); delay(1000); digitalWrite(LOW); delay(1000); }
Q.13.
Which means Off?void setup() { pinMode(OUTPUT); }void loop() { digitalWrite(HIGH); delay(1000); digitalWrite(LOW); delay(1000); }
Q.14.
The (+) column on your breadboard represents the positive charge or power to your circuit.
Q.15.
Al usar las salidas digitales, tenemos que tener en cuenta que:
Q.16.
En el siguiente código, decir qué número se muestra en lalínea de pantalla: for(int x =x <x = x * 1.5){ println(x); }
Q.17.
Queremos declarar una entrada digital. ¿Qué tenemos que emplear?
Q.18.
Cual de los siguientes dispositivos es una entrada analógica:
Q.19.
What would happen if we used the following code but the wire was not plugged into pin 13?digitalWrite(HIGH); delay(1000); digitalWrite(LOW); delay(1000);
Q.20.
Serial.println⁡Serial.print\lnSerial.println to display text and then force any following text to start on the ...........line Serial.println⁡("ArduinoforEveryone!");Serial.print\ln("ArduinoforEveryone!");Serial.println("ArduinoforEveryone!");