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

O Level Internet of Things Paper July 2022 | Set 1

Question: 5 Report Error

M2M की कौन सी विशेषता नहीं है?

Which one is not the feature of M2M?

A)
B)
C)
D)

Question: 22 Report Error

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

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

A)
B)
D)

Question: 23 Report Error

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

What will be the output of the following code?

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

A)
B)
C)
D)

Question: 24 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: 25 Report Error

मुख्य रूप से रियल टाइम सिस्टम का उपयोग _______________ के लिए किया जाता है।

Mainly Real Time Systems are used for _______________.

A)
B)
C)
D)

Question: 26 Report Error

साक्षात्कार की तैयारी के लिए आवश्यक क्रम है:

The sequence required for the preparation of an interview is:

A)
B)
C)
D)

Question: 27 Report Error

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

What will be the output of the following piece of code?


#include <stdio.h>
int main() {
for(i = 0;i < 8; i++);
printf("%d", i);
return 0;
}
A)
B)
C)
D)

Question: 30 Report Error

लेखन के लाभ निर्धारित करें.

Determine the benefits of writing.

A)
B)
C)
D)

Question: 36 Report Error

Arduino UNO के एनालॉग पिन समूह के लिए कौन सा गलत है?

Which one is incorrect for the Arduino UNO's analog pin group?

A)
B)
C)
D)

Question: 39 Report Error

फ़ंक्शंस के साथ C प्रोग्राम का आउटपुट क्या है?

What is the output of C program with functions?

int main() {
   int a = 0;
  printf("AJAY ");
return 1;
  printf("VIJAY");
  return 1;
}

A)
B)
C)
D)

Question: 44 Report Error

एमक्यूटीटी का अर्थ है:

MQTT stands for :

A)
B)
C)
D)

Question: 46 Report Error

एलपीडब्ल्यूएएन:

The LPWAN :

A)
B)
C)
D)

Question: 49 Report Error

GPIO का क्या मतलब है?

What does GPIO stand for?

A)
B)
C)
D)

Question: 50 Report Error

अनुरोध-प्रतिक्रिया IoT संचार मॉडल के संबंध में कौन सा कथन सत्य है?

Which statement is true in concern with Request-response IoT communication model?

A)
B)
C)
D)

Question: 56 Report Error

C प्रोग्राम का आउटपुट क्या है?

What is the output of C Program ?

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

A)
B)
C)
D)

Question: 57 Report Error

DHT11 _______ है।

DHT11 is _______.

A)
B)
C)
D)

Question: 62 Report Error

आईएसएम का मतलब है:

ISM stand for :

A)
B)
C)
D)

Question: 64 Report Error

coap://localhost:4589/तापमान/temp1, यहां 4589 है:

coap://localhost:4589/Temperature/temp1, here the 4589 is :

A)
B)
C)
D)

Question: 66 Report Error

निम्नलिखित में से कौन सा सेंसर का कार्य है?

Which of the following is a function of a sensor?

A)
B)
C)
D)

Question: 71 Report Error

लिलिपैड अरुडिनो का संबंध है:

The Lilypad Arduino is concerned with:

A)
B)
C)
D)

Question: 73 Report Error

एपीआई का मतलब है:

API stands for :

A)
B)
C)
D)

Question: 89 Report Error

सही बॉयलरप्लेट Arduino कोड ढूंढें

Find the correct boilerplate Arduino code .

A)
B)
C)
D)

Related Papers















































Latest Updates