🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

O Level Internet of Things Paper July 2025

Question: 1 Report Error

ड्रेस कोड किस communication का example है?

Dress code is an example of which type of communication?

A)
B)
C)
D)
Explanation

Explanation:

  • A dress code conveys messages about professionalism, role, culture, or expectations without using words, which makes it a form of non-verbal communication.

Correct Answer: A) Non-verbal


Question: 2 Report Error

MEMS झुकाव सेंसर किस भाषा को जोड़ता है?

MEMS tilt sensor combine which language?

A)
B)
C)
D)
Explanation

Explanation:

MEMS tilt sensors (Micro-Electro-Mechanical Systems) combine:

  • Mechanical components (like movable parts that detect tilt or motion)

  • Electronic components (for sensing, signal processing, and output)

This integration allows the sensor to detect tilt, acceleration, or orientation changes.

Correct Answer: B) Mechanical + Electronics


Question: 3 Report Error

ADXL-335 किस प्रकार का sensor है?

What type of sensor is ADXL-335?

A)
B)
C)
D)
Explanation

👉 यह एक Accelerometer sensor है।

विवरण (Explanation):

ADXL-335 एक 3-axis analog accelerometer है, जो X, Y, और Z दिशाओं में acceleration (त्वरण) को मापता है। इसका उपयोग मोबाइल डिवाइसेज़, गेमिंग कंट्रोलर्स, और मोशन-सेंसिंग उपकरणों में किया जाता है।

Correct Answer: B) Accelerometer sensor


Question: 4 Report Error

Arduino Nano की clock speed क्या है?

What is the clock speed of Arduino Nano?

A)
B)
C)
D)
Explanation

Arduino Nano में ATmega328P माइक्रोकंट्रोलर होता है जिसकी क्लॉक स्पीड 16 मेगाहर्ट्ज़ (MHz) होती है।


This means the microcontroller runs at 16 million cycles per second.

Correct Answer: C) 16 MHz


Question: 5 Report Error

C language में += operator का मतलब क्या है?

What does the += operator do in C language?

A)
B)
C)
D)
Explanation

+= एक compound assignment operator है।
This operator adds the right-hand value to the left-hand variable and assigns the result back to that variable.

उदाहरण / Example:

int a = 5;
a += 3;   // इसका अर्थ है: a = a + 3;

अब a की वैल्यू होगी 8


👉 So, += का मतलब है जोड़ो और असाइन करो (Add and assign)
👉 It combines addition and assignment in one step.

Correct Answer: C) Add and assign


Question: 6 Report Error

Ultrasonic sensor क्या detect करता है?

What does an ultrasonic sensor detect?

A)
B)
C)
D)
Explanation

An ultrasonic sensor uses ultrasonic sound waves to measure the distance between the sensor and an object.
यह सेंसर ध्वनि तरंगों का उपयोग करके वस्तु तक की दूरी मापता है।

उदाहरण / Example:

जब आप किसी रोबोट में ultrasonic sensor लगाते हैं, तो यह सामने आने वाली चीज़ों की दूरी माप सकता है और टकराने से बच सकता है।


👉 So, Ultrasonic sensor detects: Distance
👉 Ultrasonic sensor दूरी (Distance) को मापता है।

Correct Answer: C) Distance


Question: 7 Report Error

MQ135 sensor का उपयोग मुख्य रूप से किस गैस को detect करने में किया जाता है?

MQ135 sensor is mainly used to detect which gas?

A)
B)
C)
D)
Explanation

MQ135 एक air quality sensor है जो कई हानिकारक गैसों का पता लगाने में सक्षम है, जैसे:

  • CO₂ (Carbon Dioxide) – मुख्य रूप से

  • NH₃ (Ammonia)

  • NOx

  • Alcohol

  • Benzene

  • Smoke

लेकिन इसका प्रमुख उपयोग Carbon Dioxide (CO₂) जैसी गैसों को detect करने में होता है, जिससे यह इनडोर एयर क्वालिटी मॉनिटरिंग के लिए उपयुक्त होता है।


👉 So, MQ135 is mainly used to detect: Carbon Dioxide (CO₂)
👉 MQ135 मुख्य रूप से कार्बन डाइऑक्साइड (CO₂) को detect करता है।

Correct Answer: B) CO₂ (Carbon Dioxide)


Question: 8 Report Error

analogRead() को कैसे use करेंगे LED flash के लिए जब sensor value > 100 हो?

How to use analogRead() to flash LED when sensor value is > 100?

A)
B)
C)
D)
Explanation
  • analogRead(A0) – यह A0 पिन से sensor की analog value पढ़ता है (0 से 1023 के बीच)।

  • if (analogRead(A0) > 100) – यह चेक करता है कि क्या वैल्यू 100 से ज़्यादा है।

  • { digitalWrite(LED, HIGH); } – अगर हाँ, तो LED को ON कर देता है।

उदाहरण / Example Code:

int LED = 13;  // LED connected to pin 13

void setup() {
  pinMode(LED, OUTPUT);
}

void loop() {
  if (analogRead(A0) > 100) {
    digitalWrite(LED, HIGH);  // LED ON
  } else {
    digitalWrite(LED, LOW);   // LED OFF
  }
}

👉 So, to flash LED when sensor value > 100, we use:
if (analogRead(A0) > 100) { digitalWrite(LED, HIGH); }

Correct Answer: A) if (analogRead(A0)>100) {digitalWrite(LED,HIGH);}


Question: 9 Report Error

Smart grid device का असली उदाहरण क्या है?

What is the real example of a smart grid device?

A)
B)
C)
D)
Explanation

A smart grid is an advanced electricity network that uses digital communication to monitor, control, and manage the flow of electricity.

🔌 Smart meters are real examples of smart grid devices because:

  • वे बिजली की खपत को रियल-टाइम में मापते हैं

  • Utility companies को डेटा भेजते हैं

  • Remote reading, dynamic pricing, और load control में मदद करते हैं


👉 So, Smart Meter = Smart Grid Device
👉 इसलिए, Smart grid का असली उदाहरण है: Smart meters

Correct Answer: B) Smart meters


Question: 10 Report Error

Arduino UNO में कौन सा microcontroller use होता है?

Which microcontroller is used in Arduino UNO?

A)
B)
C)
D)
Explanation

Arduino UNO एक लोकप्रिय माइक्रोकंट्रोलर बोर्ड है जो मुख्य रूप से ATmega328P चिप पर आधारित होता है।

🔹 यह 8-बिट AVR माइक्रोकंट्रोलर है
🔹 इसमें 32KB Flash memory, 2KB SRAM, और 1KB EEPROM होता है
🔹 इसकी clock speed होती है 16 MHz


👉 So, the microcontroller used in Arduino UNO is: ATmega328P
👉 इसलिए, Arduino UNO में उपयोग किया जाने वाला microcontroller है: ATmega328P

Correct Answer: C) ATmega328P


Question: 11 Report Error

Resume शब्द किस भाषा से आया है?

From which language does the word Resume come?

A)
B)
C)
D)
Explanation

"Résumé" शब्द की उत्पत्ति French भाषा से हुई है।
इसका अर्थ होता है: summary (सारांश)।
रिज़्यूमे एक ऐसा दस्तावेज़ होता है जो किसी व्यक्ति की शैक्षणिक योग्यता, अनुभव, और कौशल का संक्षिप्त विवरण देता है।

👉 अंग्रेज़ी में "Resume" शब्द फ्रेंच से लिया गया है, जिसमें मूलतः एक्यूट एक्सेंट होते हैं: Résumé

Correct Answer: C) French


Question: 12 Report Error

MOS-APS का पूरा नाम क्या है?

What is the full form of MOS-APS?

A)
B)
C)
D)
Explanation

MOS-APS का मतलब है:
Metal Oxide Semiconductor – Active Pixel Sensor

यह तकनीक आमतौर पर digital cameras और image sensors में इस्तेमाल होती है।
Active Pixel Sensor (APS) ऐसे इमेज सेंसर होते हैं जिनमें हर पिक्सल के पास अपना individual amplifier होता है।

👉 इसमें "MOS" भाग दर्शाता है कि sensor एक MOS technology (जैसे CMOS) पर आधारित है।

Correct Answer: A) Metal Oxide Semiconductor – Active Pixel Sensor


Question: 13 Report Error

Arduino में PWM signal generate करने के लिए कौन सा function use होता है?

Which function is used to generate PWM signal on Arduino?

A)
B)
C)
D)
Explanation

Arduino में PWM (Pulse Width Modulation) सिग्नल जनरेट करने के लिए analogWrite() फंक्शन का उपयोग किया जाता है।

🔹 analogWrite(pin, value)
जहाँ value होता है 0 से 255 के बीच, जो ड्यूटी साइकिल को दर्शाता है।
🔹 यह सिर्फ PWM-enabled पिन्स (जैसे 3, 5, 6, 9, 10, 11 on Uno) पर काम करता है।

🧪 उदाहरण / Example:

analogWrite(9, 128);  // Pin 9 पर 50% duty cycle वाला PWM signal भेजता है

👉 So, PWM signal generate करने के लिए Arduino में use होता है: analogWrite()

Correct Answer: C) analogWrite()


Question: 14 Report Error

DHT11 sensor किस लिए use होता है?

DHT11 sensor is used to measure:

A)
B)
C)
D)
Explanation

DHT11 एक डिजिटल सेंसर है जो दो चीज़ों को मापता है:

  • 🌡️ Temperature (तापमान)

  • 💧 Humidity (नमी)

यह sensor आसानी से Arduino और अन्य माइक्रोकंट्रोलर के साथ काम करता है और environmental monitoring के लिए बहुत उपयोगी है।


👉 So, DHT11 sensor measures both Temperature and Humidity.
👉 DHT11 सेंसर तापमान और नमी दोनों को मापता है।

Correct Answer: C) Temperature और Humidity दोनों


Question: 15 Report Error

C language में constant का उद्देश्य क्या है?

What is the purpose of constant in C language?

A)
B)
C)
D)
Explanation

C language में const keyword का उपयोग किसी variable की value को constant (स्थिर) बनाने के लिए किया जाता है।
एक बार value assign हो जाने के बाद, उसे बदला नहीं जा सकता।

🧪 उदाहरण / Example:

const int maxValue = 100;
maxValue = 200; // ❌ Error! क्योंकि यह एक constant है

👉 So, constant का उद्देश्य होता है किसी वैल्यू को fix (स्थिर) रखना।
👉 The purpose of a constant is to prevent its value from being changed.

Correct Answer: B) Value को fix रखने के लिए


Question: 16 Report Error

GSM का full form क्या है?

Full form of GSM:

A)
B)
C)
D)
Explanation

GSM एक लोकप्रिय मोबाइल संचार तकनीक है जिसका पूरा नाम है:
➡️ Global System for Mobile communications

यह एक standard है जो मोबाइल नेटवर्क में voice calls, SMS, और data transfer को enable करता है।
GSM का उपयोग 2G नेटवर्क में सबसे ज्यादा किया जाता है और यह दुनिया भर में widely adopted है।


👉 So, GSM = Global System for Mobile communications
👉 GSM मोबाइल संचार के लिए एक वैश्विक प्रणाली है।

Correct Answer: C) Global System for Mobile communications


Question: 17 Report Error

for(;;) { statement } का मतलब क्या है?

What does for(;;) { statement } mean?

A)
B)
C)
D)
Explanation

C language में for(;;) एक valid syntax है जो एक infinite loop बनाता है।

➤ Syntax breakdown:

for(initialization; condition; update)

जब आप तीनों खाली छोड़ देते हैं (for(;;)), तो:

  • कोई condition नहीं होती — यानी loop हमेशा चलता रहेगा

  • इसे रोकने के लिए break या return का इस्तेमाल करना होगा

🧪 Example:

for(;;) {
    printf("Running forever\n");
    // loop को रोकने के लिए आप break लगा सकते हैं
}

👉 So, for(;;) means the loop will run forever (infinite loop) unless stopped manually.

Correct Answer: A) infinite loop


Question: 18 Report Error

Arduino में analogWrite() किस pin पर use होती है?

Which pin is analogWrite() used on in Arduino?

A)
B)
C)
D)
Explanation
  • Arduino में analogWrite() function का इस्तेमाल PWM (Pulse Width Modulation) signal भेजने के लिए होता है।

  • यह सिर्फ उन्हीं digital pins पर काम करता है जो PWM-supported हों।

  • Arduino Uno में ये PWM-supported पिन्स होती हैं:
    🔢 3, 5, 6, 9, 10, 11 (इन पर ~ चिन्ह होता है)

🧪 Example:

analogWrite(5, 128);  // Pin 5 पर 50% duty cycle का PWM signal भेजता है

👉 So, analogWrite() is used only on PWM-supported digital pins, not analog pins.

Correct Answer: C) PWM-supported digital pins


Question: 19 Report Error

एकल यूएवी प्रणाली में एंटीना ______________ है

The antenna in single UAV system is ______________

A)
B)
C)
D)
Explanation

एक single UAV (Unmanned Aerial Vehicle) सिस्टम में, एंटीना अक्सर omnidirectional होता है क्योंकि:

  • यह सभी दिशाओं में सिग्नल भेज और प्राप्त कर सकता है

  • UAV की दिशा बदलने पर भी ग्राउंड स्टेशन के साथ कनेक्शन बना रहता है

  • ऐसी mobility के लिए यह सबसे उपयुक्त होता है

In English:
The omnidirectional antenna is ideal for UAVs as it allows communication in all directions, regardless of how the drone moves or rotates.

Correct Answer: A) Omnidirectional


Question: 20 Report Error

सीआईएससी का तात्पर्य ___________ है।

CISC stands for ___________.

A)
B)
C)
D)
Explanation

CISC (Complex Instruction Set Computer) एक प्रकार की कंप्यूटर आर्किटेक्चर है जिसमें:

  • एक ही instruction में कई low-level operations को combine किया जा सकता है

  • Instructions ज़्यादा complex होते हैं

  • यह मेमोरी की अधिक कुशलता से उपयोग करता है, लेकिन execution time कभी-कभी बढ़ सकता है

In English:
CISC is a type of CPU architecture where a single instruction can execute multiple low-level operations, making the instruction set more complex but often reducing the number of instructions per program.

Correct Answer: A) complex instruction set Computer


Question: 21 Report Error

Arduino Mega में oscillator की frequency क्या होती है?

What is the frequency of the oscillator in Arduino Mega?

A)
B)
C)
D)
Explanation

Arduino Mega 2560 बोर्ड में ATmega2560 माइक्रोकंट्रोलर होता है,
जिसमें एक 16 MHz का क्रिस्टल oscillator लगा होता है।

🔹 यही oscillator बोर्ड की clock speed को नियंत्रित करता है।
🔹 यह frequency सुनिश्चित करती है कि माइक्रोकंट्रोलर प्रति सेकंड कितनी instructions को प्रोसेस कर सकता है।

In English:
The Arduino Mega uses a 16 MHz crystal oscillator to provide the system clock for the ATmega2560 microcontroller.

Correct Answer: C) 16 MHz


Question: 22 Report Error

IoT में SIM card का उद्देश्य क्या है?

What is the purpose of SIM card in IoT?

A)
B)
C)
D)
Explanation

IoT (Internet of Things) डिवाइसेज़ में SIM card का उपयोग होता है:

  • मोबाइल नेटवर्क (जैसे 2G, 3G, 4G, या 5G) के जरिए

  • इंटरनेट से कनेक्ट होने के लिए

  • ताकि डिवाइस कहीं से भी डेटा भेज या प्राप्त कर सके

यह वही SIM होता है जैसा हम मोबाइल में इस्तेमाल करते हैं, लेकिन IoT डिवाइसेज़ में यह data communication के लिए होता है, ना कि calling के लिए।


👉 So, the SIM card in IoT provides Internet or mobile network connectivity.

Correct Answer: B) Internet connectivity / mobile network


Question: 23 Report Error

MQTT का full form क्या है?

Full form of MQTT is:

A)
B)
C)
D)
Explanation

MQTT एक lightweight messaging protocol है जो IoT (Internet of Things) devices के बीच data भेजने के लिए इस्तेमाल होता है।

🔹 यह publish-subscribe model पर काम करता है
🔹 Low bandwidth और low power devices के लिए डिज़ाइन किया गया है
🔹 यह real-time communication के लिए बहुत उपयोगी है

In English:
MQTT (Message Queuing Telemetry Transport) is a lightweight protocol designed for low-bandwidth, high-latency, or unreliable networks, especially used in IoT communication.

Correct Answer: B) Message Queuing Telemetry Transport


Question: 24 Report Error

कौन सा protocol UNB technology का use करता है?

Which of the following protocol uses a technology UNB?

A)
B)
C)
D)
Explanation
  • UNB (Ultra Narrow Band) technology का उपयोग Sigfox protocol में किया जाता है।

  • यह तकनीक बहुत कम बैंडविड्थ का उपयोग करती है और लंबी दूरी तक डेटा भेजने में सक्षम होती है, वह भी कम पावर में।

  • इसलिए यह बैटरी-से चलने वाले IoT डिवाइसेज़ के लिए उपयुक्त है।

In English:
Sigfox uses Ultra Narrow Band (UNB) to transmit very small amounts of data over long distances using minimal power, making it ideal for low-power wide-area networks (LPWANs) in IoT.

Correct Answer: B) Sigfox


Question: 25 Report Error

coap://localhost:4589/temperature/temp1 में 4589 क्या है?

In coap://localhost:4589/temperature/temp1, what is 4589?

A)
B)
C)
D)
Explanation
  • URL में localhost:4589 का मतलब है कि क्लाइंट "localhost" (यानि local machine) पर port 4589 से कनेक्ट करेगा।

  • CoAP (Constrained Application Protocol) में, port number यह निर्धारित करता है कि communication किस specific service या process से की जाएगी।

Structure of CoAP URL:

coap://<host>:<port>/<resource>

🔹 coap://localhost:4589/temperature/temp1
🔸 यहाँ 4589 = Port Number है


👉 So, 4589 is the port number used for communication.

Correct Answer: A) port number


Question: 26 Report Error

IoT process का पहला चरण क्या होता है?

What is the first step of the IoT process?

A)
B)
C)
D)
Explanation

IoT (Internet of Things) प्रक्रिया का पहला चरण होता है:

🔹 Data acquisition, जिसे sensing भी कहते हैं।
🔹 इसमें सेंसर और डिवाइस फिजिकल दुनिया से temperature, humidity, motion, आदि डेटा को इकट्ठा करते हैं।
🔹 यह डेटा बाद में स्टोर, प्रोसेस और विज़ुअलाइज़ किया जाता है।

In English:
The first step in the IoT process is collecting raw data from the environment using sensors and devices — called data acquisition or sensing.

Correct Answer: C) Data acquisition (sensing)


Question: 27 Report Error

अनुप्रयोग परत प्रोटोकॉल:

Application layer protocol:

A)
B)
C)
D)
Explanation

Application Layer OSI और TCP/IP मॉडल की सबसे ऊपरी लेयर होती है, जो यूज़र और नेटवर्क एप्लिकेशन के बीच इंटरफेस प्रदान करती है।

प्रोटोकॉल का वर्गीकरण:

  • HTTP (Application Layer) – वेब ब्राउज़िंग के लिए

  • IP (Network Layer) – पैकेट डिलीवरी के लिए

  • TCP (Transport Layer) – डेटा ट्रांसपोर्ट के लिए

  • ARP (Link Layer) – MAC address पता करने के लिए


👉 So, HTTP is an Application Layer Protocol, used in web communication.

Correct Answer: C) HTTP


Question: 28 Report Error

LDR sensor का मुख्य उपयोग किसमें होता है?

Main use of LDR sensor is in:

A)
B)
C)
D)
Explanation

LDR (Light Dependent Resistor) एक ऐसा सेंसर है जो light intensity के अनुसार अपनी resistance बदलता है।

  • जब light ज़्यादा होती है, तो resistance कम हो जाता है।

  • जब light कम होती है, तो resistance बढ़ जाता है।

इसलिए इसका उपयोग light sensing applications में किया जाता है, जैसे कि automatic street lights, brightness control आदि।

In short, LDR sensor detects the intensity of light and is used where light measurement is needed.

Correct Answer: B) Detecting light intensity


Question: 29 Report Error

PSEN का पूरा नाम क्या है?

What is the full form of PSEN?

A)
B)
C)
D)
Explanation

PSEN (Program Store Enable) एक सिग्नल है जो 8051 माइक्रोकंट्रोलर में इस्तेमाल होता है।

  • यह external program memory को enable करता है।

  • जब माइक्रोकंट्रोलर external ROM से instruction fetch करता है, तो PSEN सक्रिय होता है।

Correct Answer: A) Program Store Enable


Question: 30 Report Error

Capacitive touch sensor का use IoT में क्यों होता है?

Why is capacitive touch sensor used in IoT?

A)
B)
C)
D)
Explanation
  • Capacitive touch sensor का उपयोग यूज़र को डिवाइस को स्पर्श (touch) करके नियंत्रित करने के लिए किया जाता है।

  • यह सेंसर टच को पहचानता है और IoT डिवाइस को उस टच के अनुसार प्रतिक्रिया देने में सक्षम बनाता है।

  • इस तरह के sensors का उपयोग स्मार्ट होम डिवाइसेज़, टच स्क्रीन इंटरफेस, और अन्य कंट्रोल सिस्टम में किया जाता है।

In English:
Capacitive touch sensors allow users to control IoT devices through touch, providing an intuitive and easy interface.

Correct Answer: B) device को touch से control करने के लिए


Question: 31 Report Error

IP address को MAC address में कौन बदलता है?

What translates an IP address into a MAC address?

A)
B)
C)
D)
Explanation

ARP translates an IP address into a MAC address by sending a request on the local network.

Hindi:
ARP लोकल नेटवर्क पर एक रिक्वेस्ट भेजकर IP address को MAC address में बदलता है।


Use:
Needed when a device knows only the IP but wants to send data using the MAC.

Correct Answer: B) Address Resolution Protocol (ARP)


Question: 32 Report Error

ADC resolution का मतलब है:

Meaning of ADC resolution:

A)
B)
C)
D)
Explanation

ADC (Analog to Digital Converter) resolution refers to how precisely the analog signal is converted into a digital value, measured in bits.
For example, a 10-bit ADC can represent analog input using 2¹⁰ = 1024 levels.

Hindi:
ADC resolution का मतलब है कि analog signal को कितनी bits में डिजिटल रूप में बदला जाएगा।
जैसे, 10-bit ADC analog signal को 1024 अलग-अलग स्तरों (levels) में बदल सकता है।

Correct Answer: B) कितनी bits में analog value digital में बदलेगी


Question: 33 Report Error

लेवल 3 IoT में कितने प्रकार के नोड्स होते हैं?

Level 3 IoT contains how many types of nodes?

A)
B)
C)
D)
Explanation

Level 3 IoT architecture includes three types of nodes, typically:

  1. Sensor/Edge Nodes – Collect data from the environment.

  2. Gateway Nodes – Aggregate and forward data to the cloud.

  3. Cloud/Server Nodes – Process, analyze, and store the data.


Summary (Bilingual):

  • English: Level 3 IoT has 3 types of nodes: sensor, gateway, and cloud nodes.

  • Hindi: Level 3 IoT में 3 प्रकार के nodes होते हैं: सेंसर, गेटवे, और क्लाउड नोड्स।

Correct Answer: A) 2


Question: 34 Report Error

do while loop कब बंद होता है?

When does the do while loop stop?

A)
B)
C)
D)
Explanation

In a do-while loop, the block of code executes at least once, and then it keeps repeating as long as the condition is true.
It stops when the condition becomes false.

Hindi:
do-while loop में कोड का ब्लॉक कम से कम एक बार जरूर चलता है, फिर वह तब तक दोहराया जाता है जब तक condition true होती है।
यह तब बंद होता है जब condition false हो जाती है


उदाहरण (Example):

int i = 1;
do {
    cout << i;
    i++;
} while (i <= 3);

👉 यह loop तब तक चलेगा जब तक i <= 3 true है।
जब i की वैल्यू 4 होगी, condition false होगी, और loop बंद हो जाएगा।

Correct Answer: B) जब conditional expression false हो


Question: 35 Report Error

I2C का पूरा नाम क्या है?

What is the full form of I2C?

A)
B)
C)
D)
Explanation

I2C stands for Inter-Integrated Circuit.
It is a serial communication protocol used to connect low-speed devices like sensors, EEPROMs, RTCs, etc., using only two wires:

  • SDA (Serial Data Line)

  • SCL (Serial Clock Line)

Hindi:
I2C का पूरा नाम है Inter-Integrated Circuit
यह एक सीरियल कम्युनिकेशन प्रोटोकॉल है जो कम स्पीड वाले डिवाइस जैसे सेंसर, EEPROM, RTC आदि को केवल दो तारों (wires) से जोड़ने के लिए उपयोग होता है:

  • SDA (सीरियल डेटा लाइन)

  • SCL (सीरियल क्लॉक लाइन)

Correct Answer: B) Inter-Integrated Circuit


Question: 36 Report Error

थर्मोस्टेट रिमोट में कौन सा सेंसर प्रयोग किया जाता है?

Which sensor is used in thermostat remote?

A)
B)
C)
D)
Explanation

A thermostat remote is used to measure and regulate temperature. It relies on a temperature sensor (like thermistor, RTD, or digital sensors like DHT11/DS18B20) to detect the ambient temperature and help maintain the desired setpoint.

Hindi:
थर्मोस्टैट रिमोट का उपयोग तापमान को मापने और नियंत्रित करने के लिए किया जाता है। इसमें एक temperature sensor होता है (जैसे thermistor या DHT11), जो आसपास का तापमान मापता है और उस अनुसार डिवाइस को नियंत्रित करता है।

Correct Answer: A) Temperature sensor


Question: 37 Report Error

C में अंतर्निहित डेटा प्रकार:

Built in data type in C:

A)
B)
C)
D)
Explanation

In the C programming language, char is a built-in (primitive) data type used to store single characters.
Other built-in types in C include int, float, double, and char.

Hindi:
C भाषा में char एक मूल (built-in) डेटा टाइप है, जिसका उपयोग एक अक्षर (character) को संग्रहित करने के लिए किया जाता है।
C के अन्य built-in टाइप्स हैं: int, float, double और char

Correct Answer: C) char


Question: 38 Report Error

जब हम एक ही network पर बहुत सारे devices use करते हैं, तो मुख्य challenge क्या आता है?

Which challenge comes when we use many devices on the same network?

A)
B)
C)
D)
Explanation

When many devices share the same network, the main challenge is signaling — meaning how devices communicate without interfering with each other.
Issues like data collisions, network congestion, and signal interference become more common. Proper coordination is needed to ensure smooth communication.

Hindi:
जब एक ही नेटवर्क पर कई डिवाइस एक साथ जुड़े होते हैं, तो सबसे बड़ा चुनौती सिग्नलिंग होती है — यानी कि डिवाइस आपस में बिना टकराव के कैसे संचार करें।
डेटा टकराव (collision), नेटवर्क जाम (congestion) और सिग्नल इंटरफेरेंस जैसी समस्याएँ सामने आती हैं। सही तालमेल जरूरी होता है।

Correct Answer: A) Signaling / सिग्नलिंग


Question: 39 Report Error

Arduino को नियंत्रित करने के लिए कौन सा सॉफ्टवेयर या प्रोग्रामिंग भाषा उपयोग की जाती है?

Which is the software or a programming language used for controlling of Arduino?

A)
B)
C)
D)
Explanation

Arduino is primarily programmed using a C/C++-based language through the Arduino IDE.
The Arduino environment simplifies C/C++ with built-in functions for I/O operations, timing, and communication.

Hindi:
Arduino को मुख्य रूप से C या C++ आधारित भाषा का उपयोग करके Arduino IDE में प्रोग्राम किया जाता है।
Arduino का प्लेटफ़ॉर्म C/C++ को आसान बनाकर उपयोग करता है, जिसमें इनपुट/आउटपुट, टाइमिंग, और कम्युनिकेशन के लिए बिल्ट-इन फंक्शन्स होते हैं।

Correct Answer: B) c languages


Question: 40 Report Error

Optiboot क्या है?

What is Optiboot?

A)
B)
C)
D)
Explanation

Optiboot is a small, efficient bootloader used in Arduino boards.
It allows the microcontroller to receive and upload programs via serial communication without needing an external programmer.

Hindi:
Optiboot एक छोटा और प्रभावी bootloader होता है जो Arduino बोर्ड्स में उपयोग होता है।
यह माइक्रोकंट्रोलर को सीरियल कनेक्शन के माध्यम से प्रोग्राम अपलोड करने की सुविधा देता है, बिना बाहरी प्रोग्रामर के।

Correct Answer: B) Bootloader


Question: 41 Report Error

शब्दकोश हमला एक प्रकार का है:

Dictionary attack is a type of:

A)
B)
C)
D)
Explanation

A dictionary attack is an active attack where an attacker tries to gain unauthorized access by systematically entering every word in a predefined list (like a dictionary) as a password.
It targets weak passwords and attempts to break authentication mechanisms.

Hindi:
डिक्शनरी अटैक एक सक्रिय (Active) हमला है, जिसमें हमलावर एक सूची (जैसे डिक्शनरी) में दिए गए हर संभावित पासवर्ड को आजमाकर अनधिकृत एक्सेस पाने की कोशिश करता है।
यह कमजोर पासवर्ड्स को निशाना बनाता है।

Correct Answer: B) Active attack


Related Papers



















































Latest Updates