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

O Level Internet of Things Paper January 2024

Question: 6 Report Error

आईआर सेंसर की विशिष्ट सीमा क्या है?

What is the typical range of an IR sensor?

A)
B)
C)
D)

Question: 10 Report Error

IoT क्या एकत्रित करता है?

What IoT collects?

A)
B)
C)
D)

Question: 11 Report Error

ARM7TDMI में t, d, m, I का क्या मतलब है?

What are t, d, m, I stands for in ARM7TDMI?

A)
B)
C)
D)

Question: 14 Report Error

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

ISM stand for :

A)
B)
C)
D)

Question: 15 Report Error

HART का मतलब_________ है

HART stands for_________

A)
B)
C)
D)

Question: 17 Report Error

सीआईएससी का फुल फॉर्म क्या है?

what is the full form of CISC?

A)
B)
C)
D)

Question: 19 Report Error

किस हेडर फ़ाइल में PROGMEM उपयोगिता शामिल है?

Which header file contains the PROGMEM Utility?

A)
B)
C)
D)

Question: 20 Report Error

क्या लूप() फ़ंक्शन को पुनरावर्ती रूप से कॉल किया जा सकता है?

Can the loop() function be called recursively?

A)
B)
C)
D)

Question: 21 Report Error

कौन सा सेंसर वजन मापता है?

Which sensor measures weight?

A)
B)
C)
D)

Question: 25 Report Error

यदि हम सेटअप() फ़ंक्शन को अनंत लूप में चलाना चाहते हैं तो हमें क्या करने की आवश्यकता है?

What do we need to do if we want to run the setup() function in an infinite loop?

A)
B)
C)
D)

Question: 27 Report Error

एएमक्यूपी का मतलब है:

AMQP stands for :

A)
B)
C)
D)

Question: 33 Report Error

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

What is the output of the following program?

void setup() { 
    String my_str = "This is the sentence"; 
    Serial.begin(9600); 
    my_str.replace("sentence", "Arduino sketch"); 
    Serial.println(my_str);
}
void loop() { }
A)
B)
C)
D)

Question: 35 Report Error

WSN का मतलब है

WSN stands for

A)
B)
C)
D)

Question: 40 Report Error

AnalogReference() फ़ंक्शन का क्या उपयोग है?

What is the use of the analogReference() function?

A)
B)
C)
D)

Question: 42 Report Error

strcmp() फ़ंक्शन क्या करेगा?

What will strcmp() function do?

A)
B)
C)
D)

Question: 43 Report Error

आईडीई और कंपाइलर के बीच क्या अंतर है?

What is the difference between an IDE and a compiler?

A)
B)
C)
D)

Question: 44 Report Error

C भाषा में For लूप का उद्देश्य क्या है?

What is the purpose of For loop in C language?

A)
B)
C)
D)

Question: 45 Report Error

नीचे दिए गए कोड में कितनी त्रुटियाँ मौजूद हैं?

How many errors are present in the code given below?

int i=10;
	void setup() {
		pinMode(i,OUTPUT);
		digitalwrite(HIGH);
	}
	void loop() {
		//Do Nothing.
	}
A)
B)
C)
D)

Question: 47 Report Error

वीएनसी का मतलब क्या है:

What does VNC stand for :

A)
B)
C)
D)

Question: 49 Report Error

DHT11 सेंसर मापता है:

The DHT11 sensor measures:

A)
B)
C)
D)

Question: 52 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: 60 Report Error

Arduino UNO पर रीसेट बटन का क्या उपयोग है?

What is the use of the RESET button on the Arduino UNO?

A)
B)
C)
D)

Question: 62 Report Error

IQ के फॉर्मूले में CA का मतलब है

In the formula of IQ, CA stands for

A)
B)
C)
D)

Question: 64 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: 68 Report Error

नीचे दिए गए कोड का उद्देश्य क्या है यदि इसे Arduino Uno पर निष्पादित किया जाता है?

What is the objective of the code given below if it is executed on the Arduino Uno ?

#include<EEPROM.h>
int pin=13;
void setup() {
pinMode(pin,OUTPUT);
Serial.begin(9600);
}
void loop() {
for(int i=0; i<EEPROM.length(); i++) {
EEPROM.write(i, 1);
 }
digitalWrite(pin,HIGH);
exit(0);
}
A)
B)
C)
D)

Question: 69 Report Error

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

What is the full form of UART?

A)
B)
C)
D)

Question: 70 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: 71 Report Error

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

Find the correct boilerplate Arduino code .

A)
B)
C)
D)

Question: 72 Report Error

एपीआई का मतलब क्या है?

What does API stand for?

A)
B)
C)
D)

Question: 74 Report Error

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

What will be the output of the following code ?

#include <stdio.h>
void solve() {
 char ch[5] = "abcde";
int ans = 0;
for(int i = 0; i< 5; i++) {
ans += (ch[i] - 'a');
 }
printf("%d", ans);
}
int main() {
solve();
return 0;
}
A)
B)
C)
D)

Question: 75 Report Error

आत्मविश्वास __ के आधार पर भिन्न हो सकता है

Confidence can vary depending on __

A)
B)
C)
D)

Question: 76 Report Error

दिए गए C कोड में, लूप के लिए निष्पादित होता है:

In the given C code, for loop executes for:

 #include
 void main ()
 {
 int x=10;
for ( ; ; ) 
{ 
printf(“%d\n”,x):
}
 }
A)
B)
C)
D)

Question: 77 Report Error

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

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

Question: 78 Report Error

~ऑपरेटर का नाम क्या है?

What is the name of the ~ operator?

A)
B)
C)
D)

Question: 81 Report Error

स्थिरांक ____________ है.

Constant is ____________.

A)
B)
C)
D)

Question: 82 Report Error

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

What is the outcome of the following Arduino code?

void setup() {
Serial.begin(9600);
}
void setup() {
Serial.write(20);
}
A)
B)
C)
D)

Question: 84 Report Error

अनंत लूप क्या है?

What is an infinite loop?

A)
B)
C)
D)

Question: 86 Report Error

कुछ Arduino बोर्डों पर मौजूद विन पिन का क्या उपयोग है?

What is the use of the Vin pin present on some Arduino Boards?

A)
B)
C)
D)

Question: 89 Report Error

एक LCD के लिए RS पिन _________ है।

The RS pin is _________ for an LCD.

A)
B)
C)
D)

Question: 91 Report Error

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

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

A)
B)
C)
D)

Question: 92 Report Error

LDR सेंसर को ________ के रूप में संक्षिप्त किया गया है।

LDR sensor is abbreviated as ________.

A)
B)
C)
D)

Question: 93 Report Error

लूप के लिए दो वेरिएबल x और y को एक साथ कैसे चलाएं?

How to run two variables x and y in for loop simultaneously?

A)
B)
C)
D)

Question: 98 Report Error

समय प्रबंधन क्या है?

What is time management?

A)
B)
C)
D)

Related Papers











































Latest Updates