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

Which pin on the Arduino Uno is used to reset the board manually?
Arduino Uno पर किस पिन का यूज़ बोर्ड को मैन्युअल रूप से रीसेट करने के लिए किया जाता है?

Questions No: 2/50

loT devices can easily lead to catastrophe without
IoT डिवाइस ________के बिना आसानी से बुरा परिणाम दे सकते हैं

Questions No: 3/50

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

Questions No: 4/50

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

Questions No: 5/50

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

Questions No: 6/50

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

Questions No: 7/50

What will be the output of the following Arduino code?

#define X 10;
void setup()
{
X=0;
Serial.begin(9600);
Serial.print(X);
}
void loop()
{
//Do nothing…
}

Questions No: 8/50

What is the output of the following program?

for(;;) 
{
Statements
}


Questions No: 9/50

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

Questions No: 10/50

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

Questions No: 11/50

The temperature and humidity sensor values are printed in _________
टेम्प्रेचर और हुमिडीटी सेंसर वैल्यू _________ में होते हैं

Questions No: 12/50

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

Questions No: 13/50

What type of signal does the analogWrite() function output ?
analogWrite() फ़ंक्शन किस प्रकार का आउटपुट करता है?

Questions No: 14/50

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

Questions No: 15/50

Which command is used to create a delay of 1 second in an Arduino program?
Arduino प्रोग्राम में 1 सेकंड का delay क्रिएट करने के लिए किस कमांड का यूज़ किया जाता है?

Questions No: 16/50

This device allows you to prototype your project without having to permanently solder the circuit together.
यह उपकरण आपको Arduino प्रोजेक्ट को सर्किट पर बिना स्थाई रूप से सोल्डर किये हुए प्रोटोटाइप करने की अनुमति देता है।

Questions No: 17/50

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

Questions No: 18/50

Arduino can work on a variety of ______ like windows, Linux, and mac.
Arduino विभिन्न प्रकार के ______ जैसे विंडोज़, लिनक्स और मैक पर काम कर सकता है।

Questions No: 19/50

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

Questions No: 20/50

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

Questions No: 21/50

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

Questions No: 22/50

What is the use of the Interrupt Service Routine in an Arduino
Arduino में इंटरप्ट सर्विस रूटीन का क्या उपयोग है

Questions No: 23/50

___________is an indispensable tool for testing, diagnosing, and troubleshooting electrical circuits, components, and devices.
___________परीक्षण, निदान और समस्या निवारण के लिए एक अनिवार्य उपकरण है विद्युत सर्किट, घटक और उपकरण।

Questions No: 24/50

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

Questions No: 25/50

To easily interface add-on modules with Arduino, we can use
Arduino के साथ ऐड-ऑन मॉड्यूल को आसानी से इंटरफ़ेस करने के लिए, हम इसका उपयोग कर सकते हैं

Questions No: 26/50

Which command is used to create a delay in the Arduino program?
Arduino प्रोग्राम में देरी करने के लिए किस कमांड का उपयोग किया जाता है?

Questions No: 27/50

______________ is the rate at which the number of signal elements or changes to the signal occurs per second when it passes through communication channel
______________ वह दर है जिस पर संचार चैनल से गुजरने पर प्रति सेकंड सिग्नल तत्वों की संख्या या सिग्नल में परिवर्तन होता है

Questions No: 28/50

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

Questions No: 29/50

Almost all statement written in arduino language must end with a
Arduino भाषा में लिखे गए लगभग सभी कथनों के अंत में a होना चाहिए

Questions No: 30/50

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

Questions No: 31/50

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

Questions No: 32/50

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

Questions No: 33/50

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

Questions No: 34/50

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

Questions No: 35/50

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

Questions No: 36/50

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

Questions No: 37/50

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

Questions No: 38/50

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

Questions No: 39/50

Which Function is used for PWM pin in Arduino?
Arduino में PWM पिन के लिए किस फंक्शन का उपयोग किया जाता है?

Questions No: 40/50

What is the role of the Serial.begin() function in an Arduino sketch?
Arduino स्केच में Serial.begin() फ़ंक्शन की क्या भूमिका है?

Questions No: 41/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: 42/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: 43/50

Which command is used in Arduino to set 9th pin as output?
Arduino में 9वें पिन को आउटपुट के रूप में सेट करने के लिए किस कमांड का उपयोग किया जाता है?

Questions No: 44/50

Every Arduino sketch has two main parts of the program,
प्रत्येक Arduino स्केच में प्रोग्राम के दो मुख्य भाग होते हैं,

Questions No: 45/50

Which microcontroller is used in Arduino UNO.
Arduino UNO में प्रयुक्त _________ माइक्रोकंट्रोलर।

Questions No: 46/50

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

Questions No: 47/50

AnalogWrite method can be used for
AnalogWrite विधि का उपयोग किया जा सकता है

Questions No: 48/50

What is the output of the following program?

for(;;)

{

Statements

}


Questions No: 49/50

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

Questions No: 50/50

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