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

In Arduino programming, ____________ function is used to make digital pin HIGH
Arduino प्रोग्रामिंग में, डिजिटल पिन को हाई बनाने के लिए ____________ फ़ंक्शन का उपयोग किया जाता है

Questions No: 2/50

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

Questions No: 3/50

What is the use of the analogReference() function?
एनालॉग रेफरेंस () फंक्शन का उपयोग क्या है?

Questions No: 4/50

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

Questions No: 5/50

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

Questions No: 6/50

The total resistance of three resistors connected in parallel will be _____ as compared to the individual value of resistor
समानांतर में जुड़े तीन प्रतिरोधों का कुल प्रतिरोध तुलना में _____ होगा अवरोधक के व्यक्तिगत मूल्य के लिए

Questions No: 7/50

What will be the output of the following code?

int main()
{
int a=5;
while(a=123)
{
printf("RABBIT\n");
}
printf("GREEN");
return 0;
}

Questions No: 8/50

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

Questions No: 9/50

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

Questions No: 10/50

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

Questions No: 11/50

Using lecturers and handouts, information is acquired via tutorials and conversations, information is whereas by using acquired through.
व्याख्याताओं और हैंडआउट्स का उपयोग करके के माध्यम से जानकारी प्राप्त की जाती है जबकि टयुटोलियाल और वार्तालैपो का उपयोग करके ______के माध्यम से जानकारी प्राप्त की जाती है|

Questions No: 12/50

What is the output of C Program?

int main()
{
int k=10;
while(k <= 12)
{
printf("%d", k);
k++;
}
return 0;
}

Questions No: 13/50

Clock Speed of Arduino UNO is
Arduino UNO की क्लॉक स्पीड है

Questions No: 14/50

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

Questions No: 15/50

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

Questions No: 16/50

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

Questions No: 17/50

_____ pins are known as digital pins in Arduino.
Arduino में _____ पिन को डिजिटल पिन के रूप में जाना जाता है।

Questions No: 18/50

Which of the following Function is called only once in Arduino program?
निम्न में से कौन सा फ़ंक्शन Arduino प्रोग्राम में केवल एक बार कॉल किया जाता है?

Questions No: 19/50

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

Questions No: 20/50

Which language is used to bult Arduino IDE ?
Arduino IDE किस भाषा पर बनाया गया है?

Questions No: 21/50

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

Questions No: 22/50

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

Questions No: 23/50

Single line comment in C Language starts with
C भाषा में सिंगल लाइन कमेंट की शुरुआत होती है

Questions No: 24/50

What is switching time for relay to operate with Arduino ?
Arduino के साथ रिले को संचालित करने के लिए स्विचिंग समय क्या है?

Questions No: 25/50

What will be the output of the following code?

void main()
{
int x = 5*6/2 +8;
printf("%d",x);
return 0;
}


Questions No: 26/50

Expand IDE full form________?
DE का पूर्ण विस्तृत रूप ________?

Questions No: 27/50

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

Questions No: 28/50

Which of the following is used to reprogram a Bootloader in IoT devices?
IoT डिवाइस में बूटलोडर को रीप्रोग्राम करने के लिए निम्न में से किसका उपयोग किया जाता है?

Questions No: 29/50

What types of instructions have the most impact on the programme counter?
प्रोग्राम काउंटर पर किस प्रकार के निर्देशों का सबसे अधिक प्रभाव पड़ता है?

Questions No: 30/50

When a= 4, what is the value of b? in the given below statement b = (a > 6 ? 4 : 6);
जब a = 4, b का मान क्या होता है? नीचे दिए गए कथन में b = (a > 6 ? 4 : 6);

Questions No: 31/50

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

Questions No: 32/50

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

Questions No: 33/50

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

Questions No: 34/50

The RS pin is ______ for an LCD.
LCD के लिए RS पिन ............ होता है।

Questions No: 35/50

Inductance is measured in
प्रेरकत्व को मापा जाता है

Questions No: 36/50

How many terminals does the MQ2 Gas Sensor have?
MQ2 गैस सेंसर के कितने टर्मिनल हैं?

Questions No: 37/50

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

Questions No: 38/50

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

Questions No: 39/50

What is the out come of the following Arduino code?

void setup(){

Serial.begin(9600);

}

void setup0{

Serial.write(20);

}

Questions No: 40/50

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

Questions No: 41/50

Program written in Arduino IDE is known as
Arduino IDE में लिखे गए प्रोग्राम को कहा जाता है

Questions No: 42/50

In What of Pin, DHT sensor should be connected?
किस पिन में, DHT सेंसर को जोड़ा जाना चाहिए?

Questions No: 43/50

Which of the following prevents someone from denying the accessed resource
निम्नलिखित में से कौन किसी को एक्सेस किए गए संसाधन को अस्वीकार करने से रोकता है

Questions No: 44/50

Expand PWM full form ________?

Questions No: 45/50

Which of the following languages does GSN work on?
जीएसएन निम्नलिखित में से किस भाषा पर कार्य करता है?

Questions No: 46/50

What does GPIO stand for?
GPIO का क्या अर्थ है?

Questions No: 47/50

if a voltage of 5V is applied to the pin equivalent to the A0 pin on an Arduino UNO, what is the output of the programmed below?

void setup() {
    Serial.begin(9600);
    pinMode(A0, INPUT);
}
void loop() { 
    int s = analogRead(A0);
    Serial.println(s);
}

Questions No: 48/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: 49/50

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;
}

Questions No: 50/50

ADC (Analog to Digital converter) on Arduino board is used to convert__ signal into digital signal
Arduino बोर्ड पर ADC (एनालॉग टू डिजिटल कन्वर्टर) का उपयोग _____ सिग्नल को डिजिटल सिग्नल में बदलने के लिए किया जाता है।