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

O Level Internet of Things Paper January 2023

Question: 1 Report Error

टीसीपी का मतलब है:

TCP stands for :

A)
B)
C)
D)

Question: 21 Report Error

आईआर सेंसर का उपयोग क्या है?

What is the use of the IR Sensor ?

A)
B)
C)
D)

Question: 34 Report Error

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

What is the outcome of the following Arduino code ?

void setup() {
Serial.begin(9600);
}
void setup() {
Serial.write(20);
}

A)
B)
C)
D)

Question: 55 Report Error

अरुडिनो कोड की सही निष्पादन प्रक्रिया क्या है?

What is the correct execution process of an Arduino code ?

A)
B)
C)
D)

Question: 60 Report Error

MQ-135 __________ का एक प्रकार है।

MQ-135 is a type of __________.

A)
B)
C)
D)

Question: 63 Report Error

WoT (वेब ​​ऑफ थिंग्स) का मुख्य उद्देश्य है __________।

The main objective of WoT (Web of Things) is __________.

A)
B)
C)
D)

Question: 67 Report Error

Arduino क्या है?

What is Arduino ?

A)
B)
C)
D)

Question: 73 Report Error

एंबेडेड सी है:

Embedded C is :

A)
B)
C)
D)

Question: 80 Report Error

AnalogWrite() फ़ंक्शन किस प्रकार का आउटपुट सिग्नल देता है?

What type of signal does the analogWrite() function output ?

A)
B)
C)
D)

Question: 91 Report Error

IoT उपकरण के बारे में निम्नलिखित में से कौन सा गलत है?

Which of the following is false about IoT devices ?

A)
B)
C)
D)

Question: 92 Report Error

फ़ंक्शंस का उपयोग करने के __________फायदे हैं

The advantages of using functions is__________.

A)
B)
C)
D)

Question: 93 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: 94 Report Error

यदि निम्नलिखित कोड के आक्षेपों की भविष्यवाणी करें वस्तु संवेदक से दूर जा रही है:

Predict the output of the following code if the object is moving away from the sensor :


int op = 7;
int isBarrier = HIGH;
void setup() {
pinMode(op, INPUT);
Serial.begin(9600);
}
void loop() {
isBarrier = digitalRead(op);
if (isBarrier == LOW) {
Serial.println("1+");
}
else {
Serial.print("clear+");
}
delay(100);
}

A)
B)
C)
D)

Question: 95 Report Error

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

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: 96 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: 97 Report Error

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

What is the output of the following program ?

for( ; ; )
{
Statements
}

A)
B)
C)
D)

Question: 98 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: 99 Report Error

यदि वस्तु सेंसर की ओर बढ़ रही है निम्नलिखित कोड के आउटपुट की भविष्यवाणी करें।

Predict the output of the following code if the object is moving towards the sensor.

int op = 6;
int isBarrier = HIGH;
void setup() {
pinMode(op, INPUT);
Serial.begin(9600);
}
void loop() {
isBarrier = digitalRead(op);
if (isBarrier == LOW) {
Serial.println("1+");
}
else {
Serial.print("clear+");
}
delay(100);
}

A)
B)
C)
D)

Related Papers











































Latest Updates