digitalWrite()
serial.print ( )
analogWrite()
pinMode()
5-10 Sec
5-10 MS
10-15 MS
10-20 MS
setup()
loop()
start()
None of the above
0
Error
4
6
sketches
drawings
links
notes
12
16
8
14
Data rate
Bits rate
Baud rate
None of these
Application Programming Interface
Address Programming Interface
Accessing peripheral through the interface
VHDL programming
IDE
ICSP
इनमें से कोई नहीं
What will be the output of the following code?
void main(){ int x = 5*6/2 +8; printf("%d",x); return 0;}
20
21
23
19
A2
D2
PWM
5V
G++
AVR- GCC
PYTHON
Both A and B
10
11
13
Java
C/C++
Python
Assembly
Laser emitting diode
Light Emitting diode
Lighting error diode
2
3
5
input
output
input & output
none of the mentioned
PIN
GND
RESET
Compile
Verify
Terminate
Serial monitor
A5
A4
50-60
0-1023
0-255
None
Use internet for collecting and sharing data
Need microcontrollers
Use wireless technology
Are completely safe
7 Microseconds
4 Microseconds
6 Microseconds
2 Microseconds
Timing circuit
Break the circuit
Programmable circuit
Feedback circuit
General-Purpose Input/Output
General-Purpose Inner/Outer
Both (A) & (B)
General PCB
Connectivity circuit boards
Arduino shields
Other high-end Arduino boards
Bread Board
Shield
Actuator
Microprocessor
10 KB
4 KB
64 KB
32 KB
Closed loop system
Semiclosed loop system
Open system
Capacitance
Resistance
Inductance
void loop()
void setup()
while
OUTPUT
Soldering iron
digital multimeter
voltmeter
ammeter
Pulse Width Modulation.
Pulse Wide Modulation
Plain width modulation
less
high
same
Depends on the temperature
It is a name that Arduino uses for a program
Its the unit of code that is uploaded to run on an Arduino board
Both (A) and (B)
JAVA
Android
C++
analog pin
digital pin
any one
What is the objective of the code given below if it is executed on the Arduino Uno?
#include<EEPROM.h>int pin=13;void setup(){pinMode(pin,OUTPUT);Serial.begin(9600); void loop(){for(int i-0; i<EEPROM.length(); i++) {EEPROM.write(i, 1);digitalWrite(pin, HIGH);exit(0); }
Clear EEPROM
Fill EEPROM with 1's
Export EEPROM data
Fill EEPROM with 0's
Massimo Banzi
Kevin Ashton
Tim berner Lee
None of the Above
What will be the output of the following code
#include <stdio.h> void solve(){ int b=4; int res = b++ + ++b + ++b; printf("%d", res); } int main(){ solve(); return 0; }
15
17
Add on modules
extra peripherals
connectivity modules
another arduinos
High
Beneath
Ground
Open source programmable circuit board.
proprietary programmable circuit board.
Open source non-programmable circuit board.
None of the Above.
#include<EEPROM.h>int pin=13;void setup() {pinMode(pin,OUTPUT);Serial.begin(9600);{void loop()for(int i-0; i<EEPROM.length(); it+) {EEPROM.write(i, 1)digitalWrite(pin,HIGH;exit(0);}
Voltage
Frequency
Time Duration
Distence
Power source
Regulator
Inverter
A subset of traditional C
An extension of traditional C
A superset of traditional C
Same as traditional C
Analog
Digital
Power
Top to bottom
Bottom to top
Any order
What will be the output of the following code C?
#include <stdio.h> void solve(){ char ch[5] = "abcde"; int ans=0; for(int i =0; i< 5; i++) { ans += (ch[i] - 'a'); } printf("%d", ans); } int main(){ solve(); return 0; }
40