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

O Level Internet of Things Paper July 2022 | Set 2

Question: 1 Report Error

मॉडरेटर की भूमिका है:

The role of a moderator is:

A)
B)
C)
D)

Question: 2 Report Error

IoT आर्किटेक्चर के प्रभावी चरण क्या हैं?

What are the effective stages of IoT architecture?

A)
B)
C)
D)

Question: 6 Report Error

8051 है:

8051 is :

A)
B)
C)
D)

Question: 7 Report Error

बार कोड प्रणाली में____________।

In bar code system____________.

A)
B)
C)
D)

Question: 9 Report Error

नेतृत्व गुण/गुण हैं/हैं:

The leadership trait/traits is/are:

A)
B)
C)
D)

Question: 10 Report Error

एंबेडेड C में टर्नरी ऑपरेटर के लिए सही विकल्प चुनें:

Choose the correct option for the ternary operator in embedded C:

A)
B)
C)
D)

Question: 11 Report Error

दिए गए C कोड का आउटपुट है:

The output of given C code is:

#include
int main ()
{
int x=1, y = 1, z;
z= x++ + y;
printf (“%d, %d”, x, y);
}
A)
B)
C)
D)
Explanation

Let's analyze the given C code step by step:

Code:

#include 

int main ()
{
    int x = 1, y = 1, z;
    z = x++ + y;
    printf("%d, %d", x, y);
    return 0;
}

Explanation:

  • int x = 1, y = 1, z;:
    The variables x and y are both initialized to 1. The variable z is declared but not initialized yet.

  • z = x++ + y;:
    The x++ is a post-increment operation. This means:

    • First, x is used in the expression with its current value (which is 1).
    • After the expression is evaluated, x is incremented by 1.
    • The value of y is 1 (since y was initialized to 1).
    • So, z = 1 (value of x++) + 1 (value of y) = 2.
    • After the operation, x becomes 2 (due to the post-increment), and y remains 1.
  • printf("%d, %d", x, y);:
    The printf statement will print the current values of x and y, which are 2 and 1, respectively.

Output:

The output will be: "2, 1"

Thus, the correct answer is:

(B) x=2, y=1.

Correct Answer: B) x=2, y=1


Question: 14 Report Error

LDR सेंसर बने होते हैं:

LDR Sensors are made of:

A)
B)
C)
D)

Question: 20 Report Error

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

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

A)
B)
C)
D)

Question: 28 Report Error

यूएआरटी का मतलब है:

UART stands for:

A)
B)
C)
D)

Question: 29 Report Error

एलडीआर सेंसर:

LDR Sensors:

A)
B)
C)
D)

Question: 30 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)
Explanation

Let's analyze the given C code:

Code:

#include 

void main() {
    int x = 10;
    for( ; ; ) {
        printf("%d\n", x);
    }
}

Explanation:

  • The for loop here has no conditions, meaning it doesn't have a start, end, or increment condition. This is an infinite loop.

    • The empty loop structure (for( ; ; )) means the loop will continue executing indefinitely unless there is some external condition (like a break or other exit mechanism).
  • Inside the loop, the statement printf("%d\n", x); will continuously print the value of x, which is 10 in this case, on each iteration.

Conclusion:

Since the loop has no terminating condition, it will run indefinitely, printing the value of x (which is 10) continuously.

Thus, the output of this code will be an infinite loop.

Correct Answer:

(C) infinite.

Correct Answer: C) infinite


Question: 31 Report Error
Question: 33 Report Error
Question: 34 Report Error

संचार प्रक्रिया में शामिल हैं:

The communication process comprises of:

A)
B)
C)
D)

Question: 38 Report Error
Question: 40 Report Error

Arduino IDE में बूटलोडर क्या है?

What is the bootloader in the Arduino IDE?

A)
B)
C)
D)

Question: 41 Report Error

Arduino एक ______ है।

Arduino is a ______.

A)
B)
C)
D)

Question: 42 Report Error

दिखाए गए अनुसार Arduino के साथ एक LED इंटरफ़ेस का तात्पर्य है:

A LED interfacing with Arduino as shown implies:

digitalWrite (led_pin, LOW);
digitalWrite (led_pin, HIGH);
A)
B)
C)
D)

Question: 43 Report Error

SQ3R पढ़ने की समझ विधि में तीन R क्या हैं?

What are three R‟s in SQ3R reading comprehension method ?

A)
B)
C)
D)

Question: 49 Report Error

माइक्रोकंट्रोलर हैं:

Microcontrollers are:

A)
B)
C)
D)

Question: 52 Report Error

Arduino कोड के बारे में क्या सत्य है?

What is true about Arduino Codes?

A)
B)
C)
D)

Question: 53 Report Error

‘Arduino.h’ हेडर फ़ाइल के बारे में जो कथन सत्य हैं वे हैं:

The statements that are TRUE about ‘Arduino.h’ header file are:

A)
B)
C)
D)

Question: 54 Report Error

स्टोकेस्टिक नियंत्रण प्रणाली में है:

Stochastic control system has:

A)
B)
C)
D)

Question: 59 Report Error

IoT समर्थन करता है:

The IoT supports:

A)
B)
C)
D)

Question: 60 Report Error

MQ135 सेंसर है:

MQ135 Sensor is:

A)
B)
C)
D)

Question: 61 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: 63 Report Error

आर्द्रता सेंसर संबंधित है:

Humidity Sensor is related to:

A)
B)
C)
D)

Question: 68 Report Error

IoT प्रोटोकॉल में शामिल नहीं है:

An IoT protocols does not include:

A)
B)
C)
D)

Question: 69 Report Error

यदि-अन्यथा और स्विच केस कथन में अंतर है:

The difference in If-Else and switch case statement is:

A)
B)
C)
D)

Question: 72 Report Error

WoT क्या है और IoT में इसका उपयोग क्या है?

What is WoT and its usage in the IoT?

A)
B)
C)
D)

Question: 80 Report Error

कौन सी सुविधा IoT को परिभाषित करती है?

Which feature defines IoT?

A)
B)
C)
D)

Question: 87 Report Error

नियंत्रण वाल्व में स्प्रिंग का मूल कार्य क्या है?

What is the basic function of the spring in a control valve?

A)
B)
C)
D)

Question: 91 Report Error

प्रमुख विशेषताएँ जिन पर OSI और TCP/IP मॉडल भिन्न हैं:

The major characteristics on which OSI and TCP/IP model differs:

A)
B)
C)
D)

Question: 95 Report Error
Question: 98 Report Error

आईआर सेंसर का उपयोग किया जाता है:

IR Sensors are used in:

A)
B)
C)
D)

Question: 99 Report Error

एक सरणी सूचकांक, xyz [ ] _____ से शुरू होता है।

An array index, xyz [ ] starts with _____.

A)
B)
C)
D)
Explanation

In C programming, array indices always start from 0. So, if we have an array like xyz[], the index of the first element will be 0, and the last index will be size - 1.

Correct Answer:

(A) 0.

Correct Answer: A) 0


Question: 100 Report Error

दिए गए कोड के अनुक्रमण के लिए सही विकल्प चुनें:

Choose the correct option for indexing of the given code:

int main ()
{
int xyz (8);
return 0;
}

A)
B)
C)
D)
Explanation

Let's analyze the code and the concept of indexing in C.

Code:

int main ()
{
    int xyz[8];
    return 0;
}

Explanation:

  • int xyz[8]; declares an array xyz of 8 integers.
  • In C, arrays are 0-indexed, meaning the indices start from 0 and go up to n-1 where n is the size of the array.

So, the valid indices for the array xyz with size 8 will be from 0 to 7.

Indexing:

  • The first element will be at index 0.
  • The last element will be at index 7.

Conclusion:

The correct indexing range for this array is 0 to 7.

Correct Answer:

(A) 0,7.

Correct Answer: A) 0,7


Related Papers



















































Latest Updates