O Level Internet of Things Paper July 2023

Read the instructions carefully before you begin

102
Questions
120
Minutes
+1
Per correct
−0
Negative
  1. The test contains 100 questions, each with 4 options and only one correct answer.
  2. Scroll through questions on the left. Tap an option to mark it — it fills automatically on the OMR sheet on the right.
  3. On mobile, tap the round button to open the OMR sheet, and tap it again (or the close icon) to go back to questions.
  4. You can tap any bubble directly on the OMR sheet to jump straight to that question.
  5. The timer starts as soon as you click Start Test and cannot be paused.
  6. The test will auto-submit when the time runs out, so submit early if you finish sooner.
  7. Do not refresh or close the browser tab during the test.
  1. इस टेस्ट में 100 प्रश्न हैं, हर प्रश्न में 4 विकल्प हैं और केवल एक सही उत्तर है।
  2. बाईं ओर प्रश्न स्क्रॉल करें। विकल्प पर टैप करते ही वह दाईं ओर OMR शीट पर अपने आप भर जाएगा।
  3. मोबाइल पर, OMR शीट खोलने के लिए गोल बटन दबाएँ, वापस जाने के लिए फिर से दबाएँ या क्लोज़ आइकॉन पर टैप करें।
  4. आप OMR शीट पर किसी भी बबल पर सीधे टैप करके उस प्रश्न पर जा सकते हैं।
  5. "Start Test" पर क्लिक करते ही टाइमर शुरू हो जाएगा और इसे रोका नहीं जा सकता।
  6. समय समाप्त होने पर टेस्ट अपने आप सबमिट हो जाएगा, इसलिए जल्दी पूरा करने पर पहले सबमिट करें।
  7. टेस्ट के दौरान ब्राउज़र टैब को रिफ्रेश या बंद न करें।
The timer will start immediately after you click Start Test.
Candidate Roll: ZS-73417
0/100 answered
120:00
1

Resume is a _____ word.

बायोडाटा एक _____ शब्द है।

2

Which of the following Access network sublayer works in least range

निम्नलिखित में से कौन सा एक्सेस नेटवर्क सबलेयर कम से कम रेंज में काम करता है

3

Which reference modifier is used to define the reference variable?

संदर्भ चर को परिभाषित करने के लिए किस संदर्भ संशोधक का उपयोग किया जाता है?

4

In Which year, the term "Internet of things" was coined?

"इंटरनेट ऑफ़ थिंग्स" शब्द किस वर्ष गढ़ा गया था?

5

What is the full form of SCADA

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

6

Which of the following is the correct syntax for reading data from a sensor connected to an analog input pin?

एनालॉग इनपुट पिन से जुड़े सेंसर से डेटा पढ़ने के लिए निम्नलिखित में से कौन सा सही सिंटैक्स है?

7

What is the shortcut key to decrease font size in the Arduino IDE?

Arduino IDE में फ़ॉन्ट आकार कम करने की शॉर्टकट कुंजी क्या है?

8

Which of the following Arduino boards has built-in Wi-Fi connectivity?

निम्नलिखित में से किस Arduino बोर्ड में अंतर्निहित वाई-फाई कनेक्टिविटी है?

9

Which in the "Sketch" menu is used to check the code for errors?

त्रुटियों के लिए कोड की जाँच करने के लिए "स्केच" मेनू में किस विकल्प का उपयोग किया जाता है?

10

How many keywords are there in c ?

C में कितने कीवर्ड हैं?

11

CoAP message has fixed size header field of

CoAP संदेश में हेडर फ़ील्ड का निश्चित आकार होता है

12

What is the output of the program given below if a voltage of 5V is supplied to the pin corresponding to the A0 pin on an Arduino UNO?

यदि Arduino UNO पर A0 पिन के अनुरूप पिन को 5V का वोल्टेज आपूर्ति किया जाता है तो नीचे दिए गए प्रोग्राम का आउटपुट क्या है?

void setup() {
    Serial.begin(9600);
    pinMode(A0, INPUT);
}
void loop() { 
    int s = analogRead(A0);
    Serial.println(s);
}
13

Which of the following is used to control the brightness of an LED connected to an Arduino board?

Arduino बोर्ड से जुड़े LED की चमक को नियंत्रित करने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?

14

What is the function of the loop() function in an Arduino sketch?

Arduino स्केच में लूप() फ़ंक्शन का कार्य क्या है?

15

Which of the following cannot be a variable name in C?

निम्नलिखित में से कौन सा C में एक वेरिएबल नाम नहीं हो सकता है?

16

Find right for map function

मानचित्र फ़ंक्शन के लिए सही विकल्प ढूंढें

17

TCP stands for :

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

18

Which address schemes are used by Ipv4 and Ipv6 internet protocols?

Ipv4 और Ipv6 इंटरनेट प्रोटोकॉल द्वारा कौन सी पता योजनाओं का उपयोग किया जाता है?

19

In IoT, Transport layer set up connections without handshakes /acknowledgements using :

IoT में, ट्रांसपोर्ट लेयर बिना हैंडशेक/स्वीकृति के कनेक्शन स्थापित करता है:

20

What is the primary function of a push button in an Arduino circuit?

Arduino सर्किट में पुश बटन का प्राथमिक कार्य क्या है?

21

MQTT is __________ oriented

एमक्यूटीटी __________ उन्मुख है

22

Which of the following is the correct syntax for defining a custom function in an Arduino sketch?

Arduino स्केच में कस्टम फ़ंक्शन को परिभाषित करने के लिए निम्नलिखित में से कौन सा सही सिंटैक्स है?

23

Barometer is which type of sensor________

बैरोमीटर किस प्रकार का सेंसर है________

24

Standard ports of MQTT are __________.

MQTT के मानक पोर्ट __________ हैं।

25

The index of the first element in an array is __________

किसी सरणी में पहले तत्व का सूचकांक __________ है

26

How many layers are there in OSI?

OSI में कितनी परतें होती हैं?

27

What is the bootloader in the Arduino IDE?

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

28

Which function is used to find the absolute value of a number in C?

C में किसी संख्या का निरपेक्ष मान ज्ञात करने के लिए किस फ़ंक्शन का उपयोग किया जाता है?

29

MQTT stands for

MQTT का मतलब है

30

What is the output of C program with functions?

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

    Iint main() {
           int a = 0;
           printf(‘AJAY”);
           return 1;
           printf(“VIJAY”);
           return 1;
         }
31

Which one of the following protocol is considered to be a light weight protocol?

निम्नलिखित में से कौन सा प्रोटोकॉल हल्के वजन वाला प्रोटोकॉल माना जाता है?

32

Which of the following is the correct syntax for sending data over the serial port in an Arduino sketch?

Arduino स्केच में सीरियल पोर्ट पर डेटा भेजने के लिए निम्नलिखित में से कौन सा सही सिंटैक्स है?

33

What do we use to connect TV to RPi?

टीवी को आरपीआई से कनेक्ट करने के लिए हम किसका उपयोग करते हैं?

34

What is the shortcut key to open the Serial Monitor?

सीरियल मॉनिटर खोलने की शॉर्टकट कुंजी क्या है?

35

How do you initialize an array in C?

आप C में किसी सरणी को कैसे प्रारंभ करते हैं?

36

Which one out of these is not a data link layer technology ?

इनमें से कौन सी डेटा लिंक लेयर तकनीक नहीं है?

37

What is ESP8266

ESP8266 क्या है

38

Which of the following topology is used for ZigBee Smart Energy?

ZigBee स्मार्ट एनर्जी के लिए निम्नलिखित में से किस टोपोलॉजी का उपयोग किया जाता है?

39

Which one is the most discussed challenge in IoT ?

IoT में सबसे चर्चित चुनौती कौन सी है?

40

BLE stands for

BLE का मतलब है

41

What is the sensor/protocol used in GSN ?

जीएसएन में प्रयुक्त सेंसर/प्रोटोकॉल क्या है?

42

The SCL and SDA pins in Arduino is configured on

Arduino में SCL और SDA पिन को कॉन्फ़िगर किया गया है

43

Which of the following is the correct syntax for declaring a variable in an Arduino sketch?

Arduino स्केच में एक वेरिएबल घोषित करने के लिए निम्नलिखित में से कौन सा सही सिंटैक्स है?

44

TCP/IP model was developed _____ the OSI model.

टीसीपी/आईपी मॉडल को OSI मॉडल _____ विकसित किया गया था।

45

How many times the following code prints the string “hello”

निम्नलिखित कोड कितनी बार स्ट्रिंग "हैलो" प्रिंट करता है

for(i=1;i<=50;i++)
    printf(“NIELIT”);
46

Which of the following is the correct syntax for creating a delay of 1 second in an Arduino sketch?

Arduino स्केच में 1 सेकंड की देरी बनाने के लिए निम्नलिखित में से कौन सा सही सिंटैक्स है?

47

The component which converts physical quantity to electrical quantity is know as

वह घटक जो भौतिक मात्रा को विद्युत मात्रा में परिवर्तित करता है, कहलाता है

48

How much of the language is made up of verbal language

भाषा का अधिकांश भाग मौखिक भाषा से बना है

49

What is the output of “pin1” if “pin2” is sent “1011” where 1 is 5V and 0 is 0V?

यदि &quot;पिन2&quot; को &quot;1011&quot; भेजा जाता है जहां 1 5V है और 0 0V है तो &quot;पिन1&quot; का आउटपुट क्या है?

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

The 4Vs of big data are

बड़े डेटा के 4V हैं

51

Code writing and uploading into the board is done using _____?

कोड लिखना और बोर्ड पर अपलोड करना _____ का उपयोग करके किया जाता है?

52

Expansion of 6LOWPAN is

6LOWPAN का विस्तार है

53

REST stands for

REST का मतलब है

54

Zigbee specification are based on .

ज़िगबी विनिर्देशन पर आधारित हैं।

55

What is the maximum temperature value that the LM35 Temperature Sensor Module can read?

अधिकतम तापमान मान क्या है जिसे LM35 तापमान सेंसर मॉड्यूल पढ़ सकता है?

56

What does IDLE stand for ?

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

57

API enables services portability between ____________

एपीआई ____________ के बीच सेवाओं की पोर्टेबिलिटी को सक्षम बनाता है

58

Which is false?

कौन सा झूठ है?

59

MQTT protocol works on which method of communication

MQTT प्रोटोकॉल संचार की किस पद्धति पर कार्य करता है?

60

The Raspberry Pi is defined as the?

रास्पबेरी पाई को किस रूप में परिभाषित किया गया है?

61

What is the maximum voltage an Arduino UNO board can handle?

एक Arduino UNO बोर्ड अधिकतम कितना वोल्टेज संभाल सकता है?

62

For intensity control of an LED, it should be connected to

किसी एलईडी की तीव्रता नियंत्रण के लिए इसे इससे जोड़ा जाना चाहिए

63

To convert a variable from one range to another _______ function is used in Arduino IDE.

एक वेरिएबल को एक रेंज से दूसरे रेंज में बदलने के लिए Arduino IDE में _______ फ़ंक्शन का उपयोग किया जाता है।

64

Secure digital card application uses which protocol?

सुरक्षित डिजिटल कार्ड एप्लिकेशन किस प्रोटोकॉल का उपयोग करता है?

65

AMQP stands for :

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

66

Which of the following is not supported by Raspberry Pi 3

निम्नलिखित में से कौन सा रास्पबेरी पाई 3 द्वारा समर्थित नहीं है

67

________ sensor is used for tracking rotation or twist

________ सेंसर का उपयोग रोटेशन या ट्विस्ट को ट्रैक करने के लिए किया जाता है

68

What is the microcontroller used in Arduino UNO

Arduino UNO में प्रयुक्त माइक्रोकंट्रोलर क्या है?

69

Lilypad is an example of ------board

लिलीपैड ----बोर्ड का उदाहरण है

70

Soft skills are...

सॉफ्ट स्किल्स हैं...

71

A communication is considered to be complete when ____________ is provided.

संचार तब पूर्ण माना जाता है जब ____________ प्रदान किया जाता है।

72

What is the resolution of the micros() function on the Arduino Nano ?

Arduino Nano पर माइक्रोस() फ़ंक्शन का रिज़ॉल्यूशन क्या है?

73

_______ are the devices that are able to emit, accept and process data over the network.

_______ वे उपकरण हैं जो नेटवर्क पर डेटा उत्सर्जित करने, स्वीकार करने और संसाधित करने में सक्षम हैं।

74

Expand AREF full form _______?

AREF का पूर्ण रूप _______ विस्तृत करें?

75

Which of the following is the key to an effective presentation ?

निम्नलिखित में से कौन एक प्रभावी प्रस्तुति की कुंजी है?

76

What is an array in C language?

C भाषा में ऐरे क्या है?

77

IEEE standard for Zigbee is?

ज़िगबी के लिए आईईईई मानक क्या है?

78

The Arduino UNO has _____ bit controller inside

Arduino UNO के अंदर _____ बिट नियंत्रक है

79

Arduino is a prototype based on an easy-to-use?

Arduino उपयोग में आसान पर आधारित एक प्रोटोटाइप है?

80

Expand LCD ________?

एलसीडी का विस्तार करें ________?

81

What is the correct execution process of an Arduino code.

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

82

ICSP stands for ______?

ICSP का मतलब ______ है?

83

Which of the following is an example of non-verbal communication?

निम्नलिखित में से कौन सा गैर-मौखिक संचार का उदाहरण है?

84

Dc motor is an example of------

डीसी मोटर ------ का उदाहरण है

85

______are the examples of Sensors.

______सेंसर के उदाहरण हैं।

86

The default method(s) in Arduino program is/are

Arduino प्रोग्राम में डिफ़ॉल्ट विधि है/हैं

87

What does “Things” in IoT refers to?

IoT में &quot;चीज़ें&quot; का तात्पर्य क्या है?

88

which of the following communication medium supports highest data rate

निम्नलिखित में से कौन सा संचार माध्यम उच्चतम डेटा दर का समर्थन करता है?

89

Effective communication needs to be

प्रभावी संचार की आवश्यकता है

90

If a code is to be written single time it is written in which function?

यदि किसी कोड को एक बार लिखना हो तो वह किस फंक्शन में लिखा जाता है?

91

What is the purpose of the strcat function in C?

C में strcat फ़ंक्शन का उद्देश्य क्या है?

92

printf() belongs to which library of c

printf() c की किस लाइब्रेरी से संबंधित है

93

Which of the following is false about IoT devices ?

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

94

How many Analog Inputs does Arduino Uno R3 has?

Arduino Uno R3 में कितने एनालॉग इनपुट हैं?

95

API stands for :

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

96

A program written with the IDE for Arduino is called _________

Arduino के लिए IDE के साथ लिखे गए प्रोग्राम को _________ कहा जाता है

97

TX pin represents _______ in Arduino board.

TX पिन Arduino बोर्ड में _______ का प्रतिनिधित्व करता है।

98

The format specifier to accept a string is

एक स्ट्रिंग को स्वीकार करने के लिए प्रारूप विनिर्देशक है

99

What is the purpose of the `do…while` loop in C?

C में &#039;do...while&#039; लूप का उद्देश्य क्या है?

100

_____ is a function which starts after power-up or reset.

_____ एक फ़ंक्शन है जो पावर-अप या रीसेट के बाद शुरू होता है।

101

Which operating system Raspberry Pi has?

रास्पबेरी पाई में कौन सा ऑपरेटिंग सिस्टम है?

102

Arduino Uno has a memory of ___ SRAM.

Arduino Uno में ___ SRAM की मेमोरी है।

OMR Answer Sheet
Unmarked Marked Current
OMR Answer Sheet

Test submitted

Thanks, Candidate! Your responses have been recorded.

0
Answered
0
Unanswered

Hook this screen up to your backend to show the actual score.