O Level - Building Iot Applications
Questions No: 1/50

How many Analog pins exist in Arduino?
Arduino में कितने एनालॉग पिन मौजूद हैं?

Questions No: 2/50

Ardino shields are also called us _______ .
Ardino शील्ड्स को .............. भी कहा जाता है

Questions No: 3/50

The founder of Arduino project is ______ .
Arduino प्रोजेक्ट के संस्थापक .............. हैं।

Questions No: 4/50

How many GPIO (General Purpose Input/Output) pins are available on an Arduino Uno?
Arduino Uno पर कितने GPIO (सामान्य प्रयोजन इनपुट/आउटपुट) पिन उपलब्ध हैं?

Questions No: 5/50

How many analog pins are used in Arduino nano board?
Arduino नैनो बोर्ड में कितने एनालॉग पिन का उपयोग किया जाता है?

Questions No: 6/50

Advantage(s) of Arduino are
Arduino का लाभ है

Questions No: 7/50

The pre-built circuit boards that fits on the top of Arduino or any other development board are known as
पूर्व-निर्मित सर्किट बोर्ड जो Arduino या किसी अन्य विकास के शीर्ष पर फिट होते हैं बोर्ड के नाम से जाना जाता है

Questions No: 8/50

How many analog pins are used in Arduino Mega board
Arduino मेगा बोर्ड में कितने एनालॉग पिन का उपयोग किया जाता है

Questions No: 9/50

The property of any conductor that opposes the flow of electric current through it is known as
किसी भी चालक का वह गुण जो उसके माध्यम से विद्युत धारा के प्रवाह का विरोध करता है जाना जाता है

Questions No: 10/50

The process of building loT hardware and devices enhanced with smart sensors and embedded system using many of the shell components like sensors, circuits and microcontrollers is called?
सेंसर, सर्किट और माइक्रोकंट्रोलर जैसे कई शेल घटकों का उपयोग करके स्मार्ट सेंसर और एम्बेडेड सिस्टम के साथ बढ़ाए गए एलओटी हार्डवेयर और उपकरणों के निर्माण की प्रक्रिया को क्या कहा जाता है?

Questions No: 11/50

Arduino boards having double pins that provide interfacing for _______?
Arduino बोर्ड में डबल पिन होते हैं जो _______ के लिए इंटरफेसिंग प्रदान करते हैं?

Questions No: 12/50

What is the output of the following program?

for(;;)

{

Statements

}


Questions No: 13/50

Which Arduino library is typically used to control a servo motor?
सर्वो मोटर को कन्ट्रोल करने के लिए आमतौर पर किस Arduino लाइब्रेरी का यूज़ किया जाता है?

Questions No: 14/50

Which processor helps in carrying out floating point calculations?
कौन सा प्रोसेसर फ्लोटिंग पॉइंट कैलकुलेशन करने में मदद करता है?

Questions No: 15/50

Which shortcut is used to verify/compile code in Arduino IDE?
Arduino IDE में कोड को सत्यापित/संकलित करने के लिए किस शॉर्टकट का उपयोग किया जाता है?

Questions No: 16/50

Expand LED full form ______?
एलईडी का पूर्ण रूप ______ का विस्तार करें?

Questions No: 17/50

What is the purpose of the delay() function in Arduino?
Arduino में delay() फ़ंक्शन का उद्देश्य क्या है?

Questions No: 18/50

The 3.3V pin of Arduino supplies _____ volts of power.
Arduino का 3.3V पिन _____ वोल्ट बिजली की आपूर्ति करता है।

Questions No: 19/50

int a:16; what is 16 indicate here?
int a: 16; 16 यहाँ क्या दर्शाता है?

Questions No: 20/50

How many types of Arduino do we have?
हमारे पास कितने प्रकार के Arduino हैं?

Questions No: 21/50

What is the output of “pin 1” if “pin2” is sent “1011” where 1 is 5V and 0 is 0V?

int pin1 = 12;
int pin2 = 11;
void setup() {
   pinMode(pin1, OUTPUT);
   pinMode(pin2, INPUT);
   Serial.begin(9600);
}
void loop() {
  if(digitalRead(pin2)==1) {
digitalWrite(pin1,LOW);
  }
else if(digitalRead(pin2)==0) {
digitalWrite(pin1,HIGH);
}
}

Questions No: 22/50

TX pin represents _______ in Arduino board.
Arduino बोर्ड में TX पिन _______ का प्रतिनिधित्व करता है।

Questions No: 23/50

Which of the following sensors can detect motion in Arduino-based IoT projects?
निम्नलिखित में से कौन सा सेंसर Arduino-बेस्ड IoT प्रोजेक्ट्स में वैल्यू का पता लगा सकता है?

Questions No: 24/50

A single line comment begins with _____
एक सिंगल लाइन कमेंट के ......... साथ शुरू होता है

Questions No: 25/50

The function which repeatedly executes in the main program?
वह फंक्शन जो मुख्य प्रोग्राम में बार-बार एक्जीक्यूट होता है?

Questions No: 26/50

Which command used to print message on second line in LCD?
LCD में दूसरी लाइन पर मैसेज को प्रिंट करने के लिए किस कमांड का प्रयोग किया जाता है?

Questions No: 27/50

The command which is used to display the characters in the serial monitor is
सीरियल मॉनीटर में कैरेक्टर को प्रदर्शित करने के लिए......कमांड का प्रयोग किया जाता है?

Questions No: 28/50

What is the out come of the following Arduino code?

void setup(){

Serial.begin(9600);

}

void setup0{

Serial.write(20);

}

Questions No: 29/50

Arduino has both software and _________ board.
Arduino में सॉफ्टवेयर और _________ बोर्ड दोनों हैं।

Questions No: 30/50

The basic program in Arduino IDE contains
Arduino IDE में मूल प्रोग्राम शामिल है

Questions No: 31/50

Arduino is an open-source technology which is used to assemble __________ blueprints.

Questions No: 32/50

Predict the output of the following code if the object is moving away from the sensor

int op = 7;
int isBarrier = HIGH;
void setup() 
{
	pinMode(op, INPUT);
	Serial.begin(9600);
}
void loop() 
{
	isBarrier = digitalRead(op);
	if (isBarrier == LOW)
	{
		Serial.println("1+");
	}
	else
	{
		Serial.print("clear+");
	}
	delay(100);
}

Questions No: 33/50

In I2C connection, which pin on the Arduino Uno is utilized for SCL (Serial clock)?
I2C कनेक्शन में, Arduino Uno पर कौन सा पिन SCL (सीरियल क्लॉक) के लिए उपयोग किया जाता है?

Questions No: 34/50

Find the correct boilerplate Arduino code.
सही बॉयलरप्लेट Arduino कोड खोजें।

Questions No: 35/50

Which function initializes serial communication?
कौन सा फंक्शन सीरियल कम्युनिकेशन को इनिशियलाइज़ करता है?

Questions No: 36/50

A set of homogenous data stored in consecutive memory locations is called
समरूप डेटा के एक सेट लगातार मेमोरी लोकेशन में स्टोर किया जाता है जिसे कहा जाता है

Questions No: 37/50

Which software is used to upload the Arduino Sketches to the board?
Arduino Sketchs को बोर्ड पर अपलोड करने के लिए किस सॉफ्टवेयर का उपयोग है ।

Questions No: 38/50

What is the typical range of angles for controlling a servo motor using Arduino?
Arduino का यूज़ करके सर्वो मोटर को कन्ट्रोल करने के लिए एंगल्स का टिपिकल रेंज क्या है?

Questions No: 39/50

What is the purpose of the tone() function in Arduino?
Arduino में टोन() फ़ंक्शन का उद्देश्य क्या है?

Questions No: 40/50

analogRead() returns values between:
analogRead() निम्न मानों के बीच मान लौटाता है:

Questions No: 41/50

The Lilypad Arduino is concerned with:
लिलिपैड अरुडिनो का संबंध है:

Questions No: 42/50

Arduino mega hold ____ analog inputs.
Arduino मेगा होल्ड ____ एनालॉग इनपुट।

Questions No: 43/50

What will be the output of the following code?

int main()
{
int i=25;
int k=i%4;
print("%d\n",k);
}

Questions No: 44/50

What is Arduino ?
अरुडिनो क्या है?

Questions No: 45/50

Analog pins _____ the signals from an analog sensor.
एनालॉग पिन _____ एक एनालॉग सेंसर से सिग्नल।

Questions No: 46/50

Which one is not a control structure ?
कौन सी एक कंट्रोल स्ट्रक्चर नहीं है ?

Questions No: 47/50

In ATmega328p, the letter p stands for
ATmega328p में, अक्षर p का अर्थ है

Questions No: 48/50

How many arguments does the analogRead() function have?
Analog Read () फंक्शन में कितने आर्गुमेन्ट होते हैं?

Questions No: 49/50

What is temperature in Celsius LM35 for corresponding 270mV as a output voltage?
आउटपुट वोल्टेज के रूप में 270mV के लिए सेल्सियस LM35 में तापमान क्या है?

Questions No: 50/50

What is role of Execution unit?
निष्पादन इकाई की भूमिका क्या है?