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

O Level Internet of Things Paper July 2024

Question: 1 Report Error

निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?

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);
    }
}
A)
B)
C)
D)

Question: 2 Report Error

सीआरसी का मतलब है

CRC stands for

A)
B)
C)
D)

Question: 5 Report Error

निकटता सेंसर का उपयोग _____ के लिए किया जाता है।

Proximity sensors are used to _____.

A)
B)
C)
D)

Question: 6 Report Error

डब्ल्यूपीए क्या है?

What is WPA?

A)
B)
C)
D)

Question: 8 Report Error

निम्नलिखित 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
}

A)
B)
C)
D)

Question: 9 Report Error

IoT का फुल फॉर्म क्या है?

What is the full form of IoT?

A)
B)
C)
D)

Question: 10 Report Error

IIOT का फुल फॉर्म क्या है?

What is the full form of IIOT?

A)
B)
C)
D)

Question: 11 Report Error

PSEN का मतलब ________ है

PSEN stands for ________

A)
B)
C)
D)

Question: 17 Report Error

IoT अनुप्रयोगों के निर्माण में मुख्य चुनौती क्या है?

What is the main challenge in building IoT applications?

A)
B)
C)
D)

Question: 18 Report Error

NaN किसे कहते हैं?

What is NaN called?

A)
B)
C)
D)

Question: 22 Report Error

MANET का पूर्ण रूप क्या है?

What is the full form of MANET?

A)
B)
C)
D)

Question: 23 Report Error

सॉफ्ट स्किल्स हार्ड स्किल्स से किस प्रकार भिन्न हैं?

How do soft skills differ from hard skills?

A)
B)
C)
D)

Question: 29 Report Error

वायरलेस तदर्थ नेटवर्क में _________

In wireless ad-hoc network _________

A)
B)
C)
D)

Question: 31 Report Error

एमक्यूटीटी किसने बनाया?

Who created MQTT?

A)
B)
C)
D)

Question: 34 Report Error

स्टार का मतलब क्या है?

What does STAR stand for?

A)
B)
C)
D)

Question: 38 Report Error

निम्नलिखित कोड का परिणाम क्या है:

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


A)
B)
C)
D)

Question: 40 Report Error

आत्मसम्मान क्या है?

What is self-esteem?

A)
B)
C)
D)

Question: 41 Report Error

IoT गेटवे प्रदान करना होगा

IoT gateway must provide

A)
B)
C)
D)

Question: 44 Report Error

प्रोग्रामिंग में लूप का उद्देश्य क्या है?

What is the purpose of a loop in programming?

A)
B)
C)
D)

Question: 46 Report Error

MQTT का पूर्ण रूप _____

Full form of MQTT _____

A)
B)
C)
D)

Question: 47 Report Error

Li-Fi सिस्टम क्या है?

What is Li-Fi System?

A)
B)
C)
D)

Question: 49 Report Error

आत्म-अनुशासन का क्या अर्थ है?

What does self-discipline mean?

A)
B)
C)
D)

Question: 51 Report Error

एलपीडब्ल्यूएएन का पूर्ण रूप:

Full form of LPWAN:

A)
B)
C)
D)

Question: 63 Report Error

आईसीटी का पूर्ण रूप क्या है?

What is the full form of ICT?

A)
B)
C)
D)

Question: 64 Report Error

STAR पद्धति का उपयोग करने का प्राथमिक उद्देश्य क्या है?

What is the primary purpose of using the STAR method?

A)
B)
C)
D)

Question: 72 Report Error

निम्नलिखित 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() {}


A)
B)
C)
D)

Question: 73 Report Error

MQ135 सेंसर है:

MQ135 Sensor is:

A)
B)
C)
D)

Question: 74 Report Error

ऐरे वाले C प्रोग्राम का सही विकल्प चुनें:

Choose the correct option of C program having array:

int main () 
{ 
int xyz (4) = [10,20,30,40]; 
printf (“%d”, xyz (1)); } 

A)
B)
C)
D)

Question: 78 Report Error

IoT सुरक्षा बनाए रखने में फर्मवेयर अपडेट का क्या महत्व है?

What is the significance of firmware updates in maintaining IoT security?

A)
B)
C)
D)

Question: 79 Report Error

सॉफ़्टवेयर ओवर द एयर (SOTA) का मुख्य उद्देश्य क्या है?

What is the main purpose of Software Over The Air (SOTA)?

A)
B)
C)
D)

Question: 84 Report Error

यदि "पिन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);
 }
 }



A)
B)
C)
D)

Question: 88 Report Error

DHT11 __________ सेंसर है।

DHT11 is __________ sensor.

A)
B)
C)
D)

Question: 90 Report Error

OSI मॉडल में ट्रांसपोर्ट लेयर की क्या भूमिका है?

What is the role of transport layer in OSI Model?

A)
B)
C)
D)

Question: 92 Report Error

Literal क्या है?

What is Literal ?

A)
B)
C)
D)

Question: 93 Report Error

एलडीआर को _______________ भी कहा जाता है

LDR’s are also called _______________

A)
B)
C)
D)

Question: 94 Report Error

डीएचसीपी सर्वर का उद्देश्य क्या है?

What is the purpose of the DHCP server?

A)
B)
C)
D)

Question: 98 Report Error

IaaS का फुल फॉर्म?

Full form of IaaS?

A)
B)
C)
D)

Related Papers











































Latest Updates