O Level Internet of Things Paper July 2024
निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?
What will be the output of the following code snippet?
int i, j;
for (i = 0; i < 3; i++) {
for (j = 0; j < 2; j++) {
printf("%d%d", i, j);
}
}
Arduino पर 9वां पिन किस कमांड से आउटपुट के रूप में सेट किया गया है?
With which command is the 9th pin on Arduino set as output?
आगमनात्मक सेंसर को "एनएमआर" कॉइल्स के रूप में भी जाना जाता है। एनएमआर का मतलब __________ है
Inductive sensors are also referred to as “NMR” coils. NMR stands for __________
निकटता सेंसर का उपयोग _____ के लिए किया जाता है।
Proximity sensors are used to _____.
इंटरनेट ऑफ थिंग्स की अवधारणा में चीजें शामिल हैं
In the concept of Internet of Things, Things include
निम्नलिखित Arduino कोड में while लूप क्या करता है?
What does the while loop in the following Arduino code do?
while(analogRead(sensorPin) > 100)
{
flashLED(); // call a function to turn an LED on and off
}
निम्नलिखित में से कौन सा भावनात्मक बुद्धिमत्ता का प्रमुख घटक है?
Which of the following is a key component of emotional intelligence?
निम्नलिखित में से कौन सा कैपेसिटिव एलिमेंट सेंसर का अनुप्रयोग नहीं है?
Which of the following is NOT an application of capacitive element sensors?
निम्नलिखित में से कौन सी परत IoT में एंड-टू-एंड संचार प्रदान करती है?
which of the following layers provides end-to-end communication in IoT?
Arduino IDE में सीरियल मॉनिटर खोलने की शॉर्टकट कुंजी है
The shortcut key to open the Serial Monitor in the Arduino IDE is
Arduino के साथ वायरलेस संचार के लिए निम्नलिखित में से कौन सा तत्व उपलब्ध है?
Which of the following elements are available for wireless communication with Arduino?
IoT अनुप्रयोगों के निर्माण में मुख्य चुनौती क्या है?
What is the main challenge in building IoT applications?
चयनित पिन को इनपुट/आउटपुट के रूप में सेट करने के लिए निम्नलिखित में से किस फ़ंक्शन का उपयोग किया जा सकता है?
Which of the following functions can be used to set the selected pin as INput/OUTput?
सरणी के चौथे तत्व तक पहुंचने के लिए सही विकल्प चुनें:
Choose the correct option to access the 4th element of the array :
int z [30];
int *pz;
pz = z;
एक व्यक्ति एक मिनट में कितने शब्द सोच सकता है?
A person can think how many words in a minute?
सॉफ्ट स्किल्स हार्ड स्किल्स से किस प्रकार भिन्न हैं?
How do soft skills differ from hard skills?
तापमान और आर्द्रता सेंसर मान _________ में मुद्रित होते हैं
The temperature and humidity sensor values are printed in _________
फिंगर प्रिंट सेंसर किस इंटरफ़ेस का उपयोग करता है?
Finger print sensor uses which interface?
ARM7TDMI-S किस पाइपलाइनिंग का उपयोग करता है?
The ARM7TDMI-S uses which pipelining?
Arduino UNO पर वोल्टेज रेगुलेटर का आउटपुट वोल्टेज क्या है?
What is the output voltage of the voltage regulator on the Arduino UNO?
वायरलेस तदर्थ नेटवर्क में _________
In wireless ad-hoc network _________
सिग्नलों का वायरलेस ट्रांसमिशन ___________ के माध्यम से किया जा सकता है
Wireless transmission of signals can be done via ___________
निम्नलिखित में से कौन सा सॉफ्ट स्किल का उदाहरण है?
Which of the following is an example of a soft skill?
स्टार पद्धति एक साक्षात्कार के दौरान सफलता की कहानियां बताने का एक तरीका है। STAR पद्धति में "S" का क्या अर्थ है?
The STAR method is an approach to telling success stories during an interview. What does "S" stand for in the STAR method?
नौकरी के लिए साक्षात्कार आमतौर पर कितने समय का होता है?
A job interview is usually how long?
किस प्रकार की मोटर आम तौर पर अधिक कुशल होती है और बेहतर प्रदर्शन प्रदान करती है?
Which type of motor is generally more efficient and provides better performance?
IoT के स्मार्ट ग्रिड आर्किटेक्चर में क्लाउड की क्या भूमिका है?
What is the role of Cloud in smart grid architecture of IoT?
निम्नलिखित कोड का परिणाम क्या है:
What is the output of the following code:
#include<stdio.h>
int main(){
int x=1, y=1,z;
z=x++ +y
printf("%d, %d",x,y);
अन्य व्यक्ति के गैर-मौखिक व्यवहार की नकल करना किसे सुविधाजनक बनाता है?
Mirroring another person's non-verbal behaviour facilitates
भविष्य में इंटरनेट ऑफ थिंग्स (IoT) का प्रमुख प्रभाव क्या होगा?
What will be a major effect of the Internet of Things (IoT) in the future?
__ लूप वह है जिसका कोई निकास नहीं है।
An __ loop is one that has no exit.
प्रोग्रामिंग में लूप का उद्देश्य क्या है?
What is the purpose of a loop in programming?
टीवी को Rasberry Pi से कनेक्ट करने के लिए हम किसका उपयोग करते हैं?
What do we use to connect TV to Rasberry Pi?
IPv4 पते में कितने बिट होते हैं?
How many bits are there in an IPv4 address?
C में मल्टी-लाइन टिप्पणी के लिए सही सिंटैक्स क्या है?
What is the correct syntax for a multi-line comment in C?
Arduino Uno पर कितने एनालॉग इनपुट पिन उपलब्ध हैं?
How many analog input pins are available on Arduino Uno?
Arduino Uno में प्रयुक्त माइक्रोकंट्रोलर क्या है?
What is the microcontroller used in Arduino Uno?
MQTT का उपयोग मुख्य रूप से __________ के लिए किया जाता है
MQTT is mainly used for __________
.Jar एक जावा एक्सटेंशन फ़ाइल है जिसका उपयोग IoT में किया जाता है, Jar का अर्थ ___ है।
Jar is a java extension file used in IoT, jar stands for ___.
Arduino प्रोग्राम में विलंब उत्पन्न करने के लिए किस कमांड का उपयोग किया जाता है?
Which command is used to create a delay in the Arduino program?
लीनियर एक्चुएटर का उदाहरण कौन सा है?
Which is an example of linear actuator?
Arduino IDE में 2 फ़ंक्शन होते हैं। क्या रहे हैं ?
Arduino IDE consists of 2 functions. What are they ?
Arduino में रेखाचित्र ___________ एक्सटेंशन के साथ सहेजे जाते हैं।
Sketches in Arduino are saved with the extension ___________.
HC-05 मॉड्यूल को इसमें संचालित किया जा सकता है:
The HC-05 module can be operated in:
Arduino स्केच में सभी कोड Arduino से संसाधित होते हैं।
All code in an Arduino sketch is processed from Arduino .
Arduino के साथ ऐड-ऑन मॉड्यूल को आसानी से इंटरफ़ेस करने के लिए हम इसका उपयोग कर सकते हैं
To easily interface add-on modules with Arduino we can use
STAR पद्धति का उपयोग करने का प्राथमिक उद्देश्य क्या है?
What is the primary purpose of using the STAR method?
Arduino भाषा में लिखे गए लगभग सभी कथन निम्नलिखित के साथ समाप्त होने चाहिए:
Almost all statements written in the Arduino language must end with a:
वह दस्तावेज़ जिसका उपयोग संगठन के भीतर संचार करने के लिए किया जाता है, कहलाता है
The document that is used to communicate within the organization is called
__________एक दस्तावेज़ है जिसका उपयोग अदालत में साक्ष्य के रूप में किया जा सकता है।
A__________is a document that can be used as evidence in court.
ओपन IoT आर्किटेक्चर में तत्वों की संख्या?
The number of elements in the Open IoT Architecture?
उद्योगों में IOT परिनियोजन को बढ़ावा देने वाले वायरलेस नेटवर्क प्रकार हैं?
The wireless network types that promote IOT deployment in industries are?
निम्नलिखित प्रोग्राम का आउटपुट क्या है?
What is the output of the following program ?
निम्नलिखित में से किसे इंटरनेट ऑफ थिंग्स का हिस्सा नहीं माना जाता है?
Which of the following is not considered part of the Internet of Things?
निम्नलिखित Arduino कोड का आउटपुट क्या होगा?
What will be the output of the following Arduino code ?
void main() {
int k = 0;
double d = 10.21;
printf(“%lu”, sizeof(k + d));
}
void loop() {}
ऐरे वाले C प्रोग्राम का सही विकल्प चुनें:
Choose the correct option of C program having array:
int main ()
{
int xyz (4) = [10,20,30,40];
printf (“%d”, xyz (1)); }
एक IoT नेटवर्क ______ उपकरणों का एक संग्रह है।
An IoT network is a collection of ______ devices.
मॉड्यूलो की गणना करने के लिए Arduino में किस प्रतीक का उपयोग किया जाता है?
Which symbol is used in Arduino to calculate modulo?
__________ IoT आर्किटेक्चर का चौथा और अंतिम चरण है।
__________ is the fourth and final step of IoT architecture.
IoT सुरक्षा बनाए रखने में फर्मवेयर अपडेट का क्या महत्व है?
What is the significance of firmware updates in maintaining IoT security?
सॉफ़्टवेयर ओवर द एयर (SOTA) का मुख्य उद्देश्य क्या है?
What is the main purpose of Software Over The Air (SOTA)?
भारी ट्रैफिक वाले बड़े नेटवर्क के लिए कौन सी टोपोलॉजी सबसे उपयुक्त है?
Which topology is best suited for large networks with heavy traffic?
समझने के लिए मेमो की भाषा __________ और __________ होनी चाहिए।
The language of memos should be __________ and __________ to understand.
निम्नलिखित में से कौन सा मौखिक संचार का उदाहरण नहीं है?
Which of the following is not an example of verbal communication?
निम्नलिखित में से कौन सा IoT एंडपॉइंट का घटक नहीं है
Which of the following is not the component of IoT Endpoint
यदि "पिन2" को "1011" भेजा जाता है जहां 1 5V है और 0 0V है तो "पिन1" का आउटपुट क्या है?
What is the output of “pin1” 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);
}
}
वह एकमात्र फ़ंक्शन क्या है जो सभी C प्रोग्राम में अवश्य होना चाहिए?
What is the only function all C programs must contain?
रास्पबेरी पाई द्वारा उपयोग किया जाने वाला ऑपरेटिंग सिस्टम क्या है?
What is the operating system used by Raspberry Pi?
निम्नलिखित में से कौन सा सिस्टम आधारित हमला है?
Which of the following is a system based attack?
निम्नलिखित में से कौन सेंसर की स्मार्टनेस को परिभाषित करता है?
Which of the following defines smartness of sensor?
OSI मॉडल में ट्रांसपोर्ट लेयर की क्या भूमिका है?
What is the role of transport layer in OSI Model?
IoT टर्मिनल उद्योग के निर्माण को बढ़ावा देता है ________
IoT promotes the creation of IoT terminal industry ________
एलडीआर को _______________ भी कहा जाता है
LDR’s are also called _______________
डीएचसीपी सर्वर का उद्देश्य क्या है?
What is the purpose of the DHCP server?
OSI मॉडल की निम्नलिखित में से कौन सी परत टेलनेट प्रोटोकॉल का उपयोग करती है?
Which of the following layer of OSI model uses Telnet protocol?
निम्नलिखित में से कौन सा स्वास्थ्य देखभाल में IoT अनुप्रयोग का एक उदाहरण है?
Which of the following is an example of an IoT application in healthcare?
IoT वातावरण में ध्वनि संचार के कुल प्रकार हैं?
Total types of voice communications in IoT environment is?
एंबेडेड सी में टिप्पणियाँ कैसे दर्शायी जाती हैं?
How are comments denoted in Embedded C ?
निम्नलिखित में से कौन सा IOT का मुख्य तत्व नहीं है?
Which of the following is not a main element of IOT