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

What is pin connect block?
पिन कनेक्ट ब्लॉक क्या है?

Questions No: 2/50

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

Questions No: 3/50

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

Questions No: 4/50

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

Questions No: 5/50

Capacitance is measured in
धारिता को मापा जाता है

Questions No: 6/50

Embedded C is?
एंबेडेड C________ है?

Questions No: 7/50

Which baud rate is commonly used in Arduino examples?
Arduino के उदाहरणों में आमतौर पर कौन सी बॉड दर का उपयोग किया जाता है?

Questions No: 8/50

_______ is the best product in the Arduino family for Beginners.
शुरुआती लोगों के लिए Arduino परिवार में _______ सबसे अच्छा उत्पाद है।

Questions No: 9/50

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

Questions No: 10/50

In Arduino IDE, a program is called:
Arduino IDE में, एक प्रोग्राम को इस प्रकार कॉल किया जाता है:

Questions No: 11/50

Arduino Codes are referred to as____in the Arduino IDE.
Arduino IDE में Arduino कोड को के रूप में संदर्भित किया जाता है।

Questions No: 12/50

In C programming language, preprocessors are specified with _____________symbol
C प्रोग्रामिंग भाषा में, प्रीप्रोसेसरों को _____________प्रतीक के साथ निर्दिष्ट किया जाता है

Questions No: 13/50

Which compiler is used to translate C/C++ code into binary for AVR microcontrollers?
AVR माइक्रोकंट्रोलर्स के लिए C/C++ कोड को बाइनरी में ट्रांसलेट करने के लिए किस कंपाइलर का उपयोग किया जाता है?

Questions No: 14/50

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

Questions No: 15/50

The default method(s) in Arduino program is/are
Arduino प्रोग्राम में डिफ़ॉल्ट विधि है / हैं

Questions No: 16/50

Which of the following is false about lol devices?
IoT उपकरणों के बारे में निम्नलिखित में से कौन सा गलत है?

Questions No: 17/50

Type of circuit board which can be used for extension of capabilities of Arduino board
सर्किट बोर्ड का प्रकार जिसका उपयोग Arduino बोर्ड की क्षमताओं के विस्तार के लिए किया जा सकता है

Questions No: 18/50

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

Questions No: 19/50

In Arduino programming, ____________ function is used to configure the pins as input or output
Arduino प्रोग्रामिंग में, ____________ फ़ंक्शन का उपयोग पिन को कॉन्फ़िगर करने के लिए किया जाता है इनपुट या आउटपुट

Questions No: 20/50

Which function is used to set the position of a servo motor?
सर्वो मोटर की पोज़िशन सेट करने के लिए किस फ़ंक्शन का यूज़ किया जाता है?

Questions No: 21/50

API stands for
एपीआई का मतलब है

Questions No: 22/50

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

Questions No: 23/50

Code writing and uploading into the board is done using _____?
कोड लिखने और बोर्ड में अपलोड करने के लिए _____ का उपयोग किया जाता है?

Questions No: 24/50

Sensors which produce continuous signals that are proportional to the sensed parameter are
सेंसर जो निरंतर संकेत उत्पन्न करते हैं जो अनुभूति के समानुपाती होते हैं पैरामीटर हैं

Questions No: 25/50

One of the most popular Arduino boards is
सबसे लोकप्रिय Arduino बोडों में से एक है

Questions No: 26/50

What is the correct syntax for using the tone() function?
टोन() फ़ंक्शन का यूज़ करने के लिए सही सिंटैक्स क्या है?

Questions No: 27/50

The Arduino board is also called a _______?
Arduino बोर्ड को _______ भी कहा जाता है?

Questions No: 28/50

Which of the following is an established set of rules that determines how data is transmitted between different device in the same network ?
निम्न में से कौन सा एक नियम का एक स्थापित सेट है जो यहाँ निर्धारित करते हैं कि एक ही नेटवर्क में विभिन्न उपकरणों के बीच डेटा कैसे प्रसारित किया जाता है?

Questions No: 29/50

How are comments denoted in Embedded C?
एंबेडेड C में टिप्पणियों को कैसे दर्शाया जाता है

Questions No: 30/50

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(); it+) {
EEPROM.write(i, 1)
digitalWrite(pin,HIGH;
exit(0);
}

Questions No: 31/50

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

Questions No: 32/50

Which is a valid identifier?
इनमें से कौन सा वैध पहचानकर्ता है?

Questions No: 33/50

What will happen if we supply a voltage of 25V to the IR sensor?
यदि हम IR सेंसर को 25V का वोल्टेज दें तो क्या होगा?

Questions No: 34/50

Which one is incorrect for the Arduino UNO’s analog pin group?
Arduino UNO के एनालॉग पिन समूह के लिए कौन सा गलत है?

Questions No: 35/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: 36/50

Which of the following option is not available in Arduino IDE software?
निम्नलिखित में से कौन सा विकल्प Arduino IDE सॉफ़्टवेयर में उपलब्ध नहीं है?

Questions No: 37/50

Fading technique used for____________pin in Arduino.
Arduino में ____________pin के लिए उपयोग की जाने वाली फेडिंग तकनीक।

Questions No: 38/50

What is the function name for turn on led in Arduino?
Arduino में एलईडी चालू करने के लिए फ़ंक्शन का नाम क्या है?

Questions No: 39/50

Which Arduino pin is used for analog input?
एनालॉग इनपुट के लिए किस Arduino पिन का यूज़ किया जाता है?

Questions No: 40/50

Which keyword skips the current loop iteration?
कौन सा कीवर्ड वर्तमान लूप पुनरावृति को छोड़ देता है?

Questions No: 41/50

__________ board of Arduino family can be used to sewn into clothing
Arduino परिवार के __________ बोर्ड का उपयोग कपड़ों को सिलने के लिए किया जा सकता है

Questions No: 42/50

Atmel _______ AVR microcontroller present in arduino boards.
Atmel _______ AVR माइक्रोकंट्रोलर Arduino बोर्डों में मौजूद है।

Questions No: 43/50

Expand the full form of USB is_____?
USB का पूर्ण रूप बताएं____ है?

Questions No: 44/50

In Arduino programming, digital pins have ___________possible values
Arduino प्रोग्रामिंग में, डिजिटल पिन में ___________संभावित मान होते हैं

Questions No: 45/50

Which of the following is example of an LDR sensor application?
निम्न में से कौन सा LDR सेंसर एप्लिकेशन का उदाहरण है?

Questions No: 46/50

Predict the output of the following code if the object is moving towards the sensor.

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

Questions No: 47/50

How many times does the setup() function run on every startup of the Arduino System?
Arduino सिस्टम के प्रत्येक स्टार्टअप पर कितनी बार setup() फ़ंक्शन चलता है?

Questions No: 48/50

What is the out come of the following Arduino code?

void setup(){

Serial.begin(9600);

}

void setup0{

Serial.write(20);

}

Questions No: 49/50

What are the functions preprocessor directive in Embedded C programming?
एंबेडेड सी प्रोग्रामिंग में फंक्शन प्रीप्रोसेसर डायरेक्टिव क्या हैं?

Questions No: 50/50

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