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

Solved - O Level Internet of Things Paper July 2024

Ques 1 Report Error

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

What will be the output of the following code snippet?

int i, j;
for (i = 0; i < 3; i++) {
    for (j = 0; j < 2; j++) {
        printf("%d%d", i, j);
    }
}

[A] 001011020121

[B] 000110112021

[C] 000112001122

[D] 001012011202

Correct Answer : 000110112021


Ques 2 Report Error

सीआरसी का मतलब है

CRC stands for

[A] cyclic redundancy check

[B] code repeat check

[C] code redundancy check

[D] cyclic repeat check

Correct Answer : cyclic redundancy check


Ques 3 Report Error

Arduino पर 9वां पिन किस कमांड से आउटपुट के रूप में सेट किया गया है?

With which command is the 9th pin on Arduino set as output?

[A] int sensorValue = 9;

[B] int sensorPin = 9;

[C] digitalWrite(9, HIGH);

[D] pinMode(9, OUTPUT);

Correct Answer : pinMode(9, OUTPUT);


Ques 4 Report Error

आगमनात्मक सेंसर को "एनएमआर" कॉइल्स के रूप में भी जाना जाता है।  एनएमआर का मतलब __________ है

Inductive sensors are also referred to as “NMR” coils.  NMR stands for __________

[A] Nuclear Magnetic Resonator

[B] Nuclear Magnetic Resonance

[C] Nuclie Magnetic Resonator

[D] Nuclie Magnetic Resonance

Correct Answer : Nuclear Magnetic Resonance


Ques 5 Report Error

निकटता सेंसर का उपयोग _____ के लिए किया जाता है।

Proximity sensors are used to _____.

[A] Measure temperature

[B] Measure distance

[C] Measure Strain

[D] Detect non-magnetic but conductive materials

Correct Answer : Measure distance


Ques 6 Report Error

डब्ल्यूपीए क्या है?

What is WPA?

[A] wi-fi protected access

[B] wired protected access

[C] wired process access

[D] wi-fi process access

Correct Answer : wi-fi protected access


Ques 7 Report Error

इंटरनेट ऑफ थिंग्स की अवधारणा में चीजें शामिल हैं

In the concept of Internet of Things, Things include

[A] Computer like Device

[B] Non-Computer Device

[C] Any electric Device

[D] All of the above

Correct Answer : All of the above


Ques 8 Report Error

निम्नलिखित Arduino कोड में while लूप क्या करता है?

What does the while loop in the following Arduino code do?


while(analogRead(sensorPin) > 100)
{
    flashLED(); // call a function to turn an LED on and off
}

[A] Calls flashLED() if reading < 100

[B] Calls flashLED() once if reading > 100

[C] Repeats flashLED() while reading > 100

[D] Stops flashLED() if reading > 100.

Correct Answer : Repeats flashLED() while reading > 100


Ques 9 Report Error

IoT का फुल फॉर्म क्या है?

What is the full form of IoT?

[A] Internet of Technology

[B] Incorporate of Things

[C] Internet of Things

[D] Incorporate of Technology

Correct Answer : Internet of Things


Ques 10 Report Error

IIOT का फुल फॉर्म क्या है?

What is the full form of IIOT?

[A] Index Internet of Things

[B] Incorporate Internet of Things

[C] Industrial Internet of Things

[D] Intense Internet of Things

Correct Answer : Industrial Internet of Things


Ques 11 Report Error

PSEN का मतलब ________ है

PSEN stands for ________

[A] Program Select Enable

[B] Peripheral Store Enable

[C] Program Store Enable

[D] Peripheral Select Enable

Correct Answer : Program Store Enable


Ques 12 Report Error

निम्नलिखित में से कौन सा भावनात्मक बुद्धिमत्ता का प्रमुख घटक है?

Which of the following is a key component of emotional intelligence?

[A] Avoiding emotions

[B] Controlling emotions

[C] Understanding emotions

[D] Ignoring emotions

Correct Answer : Understanding emotions


Ques 13 Report Error

निम्नलिखित में से कौन सा कैपेसिटिव एलिमेंट सेंसर का अनुप्रयोग नहीं है?

Which of the following is NOT an application of capacitive element sensors?

[A] Level control of Liquids

[B] Small vessel pump control

[C] Pollution detection

[D] Metrology application to measure shape errors

Correct Answer : Pollution detection


Ques 14 Report Error

निम्नलिखित में से कौन सी परत IoT में एंड-टू-एंड संचार प्रदान करती है?

which of the following layers provides end-to-end communication in IoT?

[A] Logical Layer

[B] Data link Layer

[C] Transport Layer

[D] Session Layer

Correct Answer : Transport Layer


Ques 15 Report Error

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

The shortcut key to open the Serial Monitor in the Arduino IDE is

[A] Ctrl + Shift + M

[B] Ctrl + Alt + M

[C] Ctrl + Shift + S

[D] Ctrl + Alt + S

Correct Answer : Ctrl + Shift + M


Ques 16 Report Error

Arduino के साथ वायरलेस संचार के लिए निम्नलिखित में से कौन सा तत्व उपलब्ध है?

Which of the following elements are available for wireless communication with Arduino?

[A] DS18B20

[B] 74HC595

[C] NRF24l01

[D] MPU6050

Correct Answer : NRF24l01


Ques 17 Report Error

IoT अनुप्रयोगों के निर्माण में मुख्य चुनौती क्या है?

What is the main challenge in building IoT applications?

[A] Finding skilled developers

[B] Building a network infrastructure

[C] Integrating different components

[D] Securing the data

Correct Answer : Securing the data


Ques 18 Report Error

NaN किसे कहते हैं?

What is NaN called?

[A] Not a Number

[B] Not a Numeric

[C] Number and Number

[D] Number a Numeric

Correct Answer : Not a Number


Ques 19 Report Error

चयनित पिन को इनपुट/आउटपुट के रूप में सेट करने के लिए निम्नलिखित में से किस फ़ंक्शन का उपयोग किया जा सकता है?

Which of the following functions can be used to set the selected pin as INput/OUTput?

[A] digitalRead

[B] analogRead

[C] pinMode

[D] digitalWrite

Correct Answer : pinMode


Ques 20 Report Error

सरणी के चौथे तत्व तक पहुंचने के लिए सही विकल्प चुनें:

Choose the correct option to access the 4th element of the array :


 int z [30]; 
int *pz; 
pz = z; 

[A] *(z+3)

[B] z [3]

[C] pz [3]

[D] *(*pz+3)

Correct Answer : z [3]


Ques 21 Report Error

एक व्यक्ति एक मिनट में कितने शब्द सोच सकता है?

A person can think how many words in a minute?

[A] 150

[B] 200

[C] 300

[D] 400

Correct Answer : 400


Ques 22 Report Error

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

What is the full form of MANET?

[A] Mobile Ad Hoc Network

[B] Main Ad hoc network

[C] Both of the above

[D] None of the above

Correct Answer : Mobile Ad Hoc Network


Ques 23 Report Error

सॉफ्ट स्किल्स हार्ड स्किल्स से किस प्रकार भिन्न हैं?

How do soft skills differ from hard skills?

[A] Soft skills are specific and measurable abilities, while hard skills are transferable.

[B] Soft skills are technical, while hard skills are interpersonal.

[C] Soft skills are not essential in the workplace.

[D] Soft skills and hard skills are synonymous terms.

Correct Answer : Soft skills are specific and measurable abilities, while hard skills are transferable.


Ques 24 Report Error

तापमान और आर्द्रता सेंसर मान _________ में मुद्रित होते हैं

The temperature and humidity sensor values are printed in _________

[A] OLED matrix

[B] PIP

[C] PYPI

[D] SDK

Correct Answer : OLED matrix


Ques 25 Report Error

फिंगर प्रिंट सेंसर किस इंटरफ़ेस का उपयोग करता है?

Finger print sensor uses which interface?

[A] USART protocol

[B] UART protocol

[C] SPI protocol

[D] I2C protocol

Correct Answer : UART protocol


Ques 26 Report Error

C में किसी संख्या का वर्गमूल

Square root of a number in C

[A] sqrt()

[B] math()

[C] loops()

[D] None

Correct Answer : sqrt()


Ques 27 Report Error

ARM7TDMI-S किस पाइपलाइनिंग का उपयोग करता है?

The ARM7TDMI-S uses which pipelining?

[A] 2-Stage

[B] 3-Stage

[C] 4-Stage

[D] 5-Stage

Correct Answer : 3-Stage


Ques 28 Report Error

Arduino UNO पर वोल्टेज रेगुलेटर का आउटपुट वोल्टेज क्या है?

What is the output voltage of the voltage regulator on the Arduino UNO?

[A] 5Vand 2.7V

[B] 9V and 5V

[C] 5V and 3.3V

[D] 3.3V and 1.5V

Correct Answer : 5V and 3.3V


Ques 29 Report Error

वायरलेस तदर्थ नेटवर्क में _________

In wireless ad-hoc network _________

[A] access point is not required

[B] access point is must

[C] nodes are not required

[D] all nodes are access points

Correct Answer : access point is not required


Ques 30 Report Error

सिग्नलों का वायरलेस ट्रांसमिशन ___________ के माध्यम से किया जा सकता है

Wireless transmission of signals can be done via ___________

[A] radio waves

[B] microwaves

[C] infrared

[D] all of the mentioned

Correct Answer : all of the mentioned


Ques 31 Report Error

एमक्यूटीटी किसने बनाया?

Who created MQTT?

[A] Robert Cailliau

[B] Tim Berners-Lee

[C] Andy Stanford-Clark

[D] Vint Cerf

Correct Answer : Andy Stanford-Clark


Ques 32 Report Error

निम्नलिखित में से कौन सा सॉफ्ट स्किल का उदाहरण है?

Which of the following is an example of a soft skill?

[A] Coding in Python

[B] Problem-solving

[C] Operating heavy machinery

[D] Data analysis

Correct Answer : Problem-solving


Ques 33 Report Error

स्टार पद्धति एक साक्षात्कार के दौरान सफलता की कहानियां बताने का एक तरीका है। STAR पद्धति में "S" का क्या अर्थ है?

The STAR method is an approach to telling success stories during an interview. What does "S" stand for in the STAR method?

[A] sort

[B] simulate

[C] situation

[D] subject

Correct Answer : situation


Ques 34 Report Error

स्टार का मतलब क्या है?

What does STAR stand for?

[A] Situation, Task, Achievement, Result

[B] Strategy, Task, Action, Result

[C] Situation, Task, Action, Result

[D] Situation, Technique, Action, Result

Correct Answer : Situation, Task, Action, Result


Ques 35 Report Error

नौकरी के लिए साक्षात्कार आमतौर पर कितने समय का होता है?

A job interview is usually how long?

[A] 30 minutes

[B] 60 minutes

[C] 90 minutes

[D] 100 minutes

Correct Answer : 30 minutes


Ques 36 Report Error

किस प्रकार की मोटर आम तौर पर अधिक कुशल होती है और बेहतर प्रदर्शन प्रदान करती है?

Which type of motor is generally more efficient and provides better performance?

[A] Brushed motor

[B] Brushless motor

[C] Both have the same efficiency

[D] It depends on the power supply

Correct Answer : Brushless motor


Ques 37 Report Error

IoT के स्मार्ट ग्रिड आर्किटेक्चर में क्लाउड की क्या भूमिका है?

What is the role of Cloud in smart grid architecture of IoT?

[A] store data

[B] manage data

[C] collect data

[D] security

Correct Answer : manage data


Ques 38 Report Error

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

What is the output of the following code:

#include<stdio.h>
int main(){
int x=1, y=1,z;
z=x++ +y
printf("%d, %d",x,y);


[A] 2,1

[B] 1,2

[C] 1,1

[D] 0,2

Correct Answer : 2,1


Ques 39 Report Error

अन्य व्यक्ति के गैर-मौखिक व्यवहार की नकल करना किसे सुविधाजनक बनाता है?

Mirroring another person's non-verbal behaviour facilitates

[A] Resistance

[B] Restriction

[C] Regression

[D] Compliance

Correct Answer : Compliance


Ques 40 Report Error

आत्मसम्मान क्या है?

What is self-esteem?

[A] a person’s ability to organize and monitor their own behaviour

[B] a person’s belief in their ability to control their life outcome.

[C] a person’s value judgement about themselves.

[D] a person’s sense of effectiveness in achieving their goals

Correct Answer : a person’s value judgement about themselves.


Ques 41 Report Error

IoT गेटवे प्रदान करना होगा

IoT gateway must provide

[A] simple and fast installation

[B] security with hardware

[C] data storage

[D] protocol abstraction

Correct Answer : protocol abstraction


Ques 42 Report Error

भविष्य में इंटरनेट ऑफ थिंग्स (IoT) का प्रमुख प्रभाव क्या होगा?

What will be a major effect of the Internet of Things (IoT) in the future?

[A] More connected devices

[B] Fewer smartphones

[C] Slower internet

[D] Less automation

Correct Answer : More connected devices


Ques 43 Report Error

__ लूप वह है जिसका कोई निकास नहीं है।

An __ loop is one that has no exit.

[A] finite

[B] Infinite

[C] Index

[D] None of these

Correct Answer : Infinite


Ques 44 Report Error

प्रोग्रामिंग में लूप का उद्देश्य क्या है?

What is the purpose of a loop in programming?

[A] To repeat a set of instructions multiple times

[B] To store data in variables

[C] To create new variables

[D] To stop the program from running

Correct Answer : To repeat a set of instructions multiple times


Ques 45 Report Error

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

What do we use to connect TV to Rasberry Pi?

[A] Female HDMI

[B] Male HDMI

[C] Male HDMI and Adapter

[D] Female HDMI and Adapter

Correct Answer : Male HDMI and Adapter


Ques 46 Report Error

MQTT का पूर्ण रूप _____

Full form of MQTT _____

[A] Message Queuing Telemetry Transport

[B] Message Queuing Telegram Transport

[C] Message Queue Telegram Transport

[D] Message Queue Telemetry Transport

Correct Answer : Message Queuing Telemetry Transport


Ques 47 Report Error

Li-Fi सिस्टम क्या है?

What is Li-Fi System?

[A] It is a traditional computer chip.

[B] It is system relies on centralised light antennas.

[C] It is a universal turing machine.

[D] It is a single desktop computer.

Correct Answer : It is system relies on centralised light antennas.


Ques 48 Report Error

IPv4 पते में कितने बिट होते हैं?

How many bits are there in an IPv4 address?

[A] 64

[B] 128

[C] 32

[D] 16

Correct Answer : 32


Ques 49 Report Error

आत्म-अनुशासन का क्या अर्थ है?

What does self-discipline mean?

[A] Controlling all emotions and behaviors

[B] Having no emotions

[C] Letting emotions control actions

[D] Always following others' instructions

Correct Answer : Controlling all emotions and behaviors


Ques 50 Report Error

C में मल्टी-लाइन टिप्पणी के लिए सही सिंटैक्स क्या है?

What is the correct syntax for a multi-line comment in C?

[A] /* This is a comment */

[B] // This is a comment //

[C] { This is a comment }

[D] / This is a comment //

Correct Answer : /* This is a comment */


Ques 51 Report Error

एलपीडब्ल्यूएएन का पूर्ण रूप:

Full form of LPWAN:

[A] Low Power Wide Area Network

[B] Lower Power Wide Area of Network

[C] Low Protocol Wide Area of Network

[D] Long Protocol Wider Area Network

Correct Answer : Low Power Wide Area Network


Ques 52 Report Error

Arduino Uno पर कितने एनालॉग इनपुट पिन उपलब्ध हैं?

How many analog input pins are available on Arduino Uno?

[A] 4

[B] 6

[C] 8

[D] 10

Correct Answer : 6


Ques 53 Report Error

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

What is the microcontroller used in Arduino Uno?

[A] ATmega328P

[B] ATmega2560

[C] ATtiny85

[D] ESP8266

Correct Answer : ATmega328P


Ques 54 Report Error

MQTT का उपयोग मुख्य रूप से __________ के लिए किया जाता है

MQTT is mainly used for __________

[A] M2M communication

[B] Device communication

[C] Internet communication

[D] Wireless communication

Correct Answer : M2M communication


Ques 55 Report Error

.Jar एक जावा एक्सटेंशन फ़ाइल है जिसका उपयोग IoT में किया जाता है, Jar का अर्थ ___ है।

Jar is a java extension file used in IoT, jar stands for ___.

[A] Java ARchive

[B] Java application runtime

[C] Java application runner

[D] None of these

Correct Answer : Java ARchive


Ques 56 Report Error

Arduino प्रोग्राम में विलंब उत्पन्न करने के लिए किस कमांड का उपयोग किया जाता है?

Which command is used to create a delay in the Arduino program?

[A] digitalRead()

[B] for()

[C] pinMode()

[D] delay()

Correct Answer : delay()


Ques 57 Report Error

लीनियर एक्चुएटर का उदाहरण कौन सा है?

Which is an example of linear actuator?

[A] Wheels

[B] Generator

[C] Light emitting diode

[D] Hydraulic cylinder

Correct Answer : Hydraulic cylinder


Ques 58 Report Error

Arduino IDE में 2 फ़ंक्शन होते हैं। क्या रहे हैं ?

Arduino IDE consists of 2 functions. What are they ?

[A] Build() and loop()

[B] Setup() and build()

[C] Setup() and loop()

[D] Loop() and build() and setup()

Correct Answer : Setup() and loop()


Ques 59 Report Error

Arduino में रेखाचित्र ___________ एक्सटेंशन के साथ सहेजे जाते हैं।

Sketches in Arduino are saved with the extension ___________.

[A] .exe

[B] .ino

[C] .ide

[D] .doc

Correct Answer : .ino


Ques 60 Report Error

HC-05 मॉड्यूल को इसमें संचालित किया जा सकता है:

The HC-05 module can be operated in:

[A] salve mode

[B] master mode

[C] Both (a) and (b)

[D] none

Correct Answer : Both (a) and (b)


Ques 61 Report Error

Arduino स्केच में सभी कोड Arduino से संसाधित होते हैं।

All code in an Arduino sketch is processed from Arduino .

[A] Top to bottom

[B] Bottom to top

[C] Any order

[D] None of these

Correct Answer : Top to bottom


Ques 62 Report Error

Arduino के साथ ऐड-ऑन मॉड्यूल को आसानी से इंटरफ़ेस करने के लिए हम इसका उपयोग कर सकते हैं

To easily interface add-on modules with Arduino we can use

[A] General PCB

[B] Connectivity circuit boards

[C] Arduino shields

[D] Other high-end Arduino boards

Correct Answer : Arduino shields


Ques 63 Report Error

आईसीटी का पूर्ण रूप क्या है?

What is the full form of ICT?

[A] InterConnect Technology

[B] Internet Connection Topology

[C] Information and Communication Technology

[D] Infer Communication Topology

Correct Answer : Information and Communication Technology


Ques 64 Report Error

STAR पद्धति का उपयोग करने का प्राथमिक उद्देश्य क्या है?

What is the primary purpose of using the STAR method?

[A] To develop software applications

[B] To structure responses in job interviews

[C] To design engineering projects

[D] To create marketing strategies

Correct Answer : To structure responses in job interviews


Ques 65 Report Error

Arduino भाषा में लिखे गए लगभग सभी कथन निम्नलिखित के साथ समाप्त होने चाहिए:

Almost all statements written in the Arduino language must end with a:

[A] Comma (,)

[B] Colon (:)

[C] Semicolon (;)

[D] Full stop (.)

Correct Answer : Semicolon (;)


Ques 66 Report Error

वह दस्तावेज़ जिसका उपयोग संगठन के भीतर संचार करने के लिए किया जाता है, कहलाता है

The document that is used to communicate within the organization is called

[A] Letter

[B] Memo

[C] E-mail

[D] Telex

Correct Answer : Memo


Ques 67 Report Error

__________एक दस्तावेज़ है जिसका उपयोग अदालत में साक्ष्य के रूप में किया जा सकता है।

A__________is a document that can be used as evidence in court.

[A] Notice

[B] Minutes

[C] Letter

[D] mail

Correct Answer : Notice


Ques 68 Report Error

ओपन IoT आर्किटेक्चर में तत्वों की संख्या?

The number of elements in the Open IoT Architecture?

[A] 6 elements

[B] 8 elements

[C] 7 elements

[D] 3 elements

Correct Answer : 7 elements


Ques 69 Report Error

उद्योगों में IOT परिनियोजन को बढ़ावा देने वाले वायरलेस नेटवर्क प्रकार हैं?

The wireless network types that promote IOT deployment in industries are?

[A] Cellular (2G-5G) network protocols

[B] Bluetooth

[C] Near field communication

[D] All of the these

Correct Answer : All of the these


Ques 70 Report Error

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

What is the output of the following program ?

[A] Error

[B] Statements will run forever

[C] This an infinite loop

[D] Both (B) and (C)

Correct Answer : Both (B) and (C)


Ques 71 Report Error

निम्नलिखित में से किसे इंटरनेट ऑफ थिंग्स का हिस्सा नहीं माना जाता है?

Which of the following is not considered part of the Internet of Things?

[A] Smart television

[B] Laptop

[C] SCADA (Supervisory Control and Data Acquisition) systems

[D] ICS (Industrial Control Systems)

Correct Answer : Laptop


Ques 72 Report Error

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

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] 10.21

[B] 8

[C] null

[D] 23

Correct Answer : 8


Ques 73 Report Error

MQ135 सेंसर है:

MQ135 Sensor is:

[A] AI detector

[B] Gas Sensor

[C] Monitors Air Pollution

[D] (B) and (C)

Correct Answer : (B) and (C)


Ques 74 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] 0

[B] Compile error

[C] 10

[D] 20

Correct Answer : Compile error


Ques 75 Report Error

एक IoT नेटवर्क ______ उपकरणों का एक संग्रह है।

An IoT network is a collection of ______ devices.

[A] Signal

[B] Machine to Machine

[C] Interconnected

[D] Network to Network

Correct Answer : Interconnected


Ques 76 Report Error

मॉड्यूलो की गणना करने के लिए Arduino में किस प्रतीक का उपयोग किया जाता है?

Which symbol is used in Arduino to calculate modulo?

[A] #

[B] $

[C] %

[D] !

Correct Answer : %


Ques 77 Report Error

__________ IoT आर्किटेक्चर का चौथा और अंतिम चरण है।

__________ is the fourth and final step of IoT architecture.

[A] Application layer

[B] Data processing layer

[C] Network layer

[D] Sensing layer

Correct Answer : Application layer


Ques 78 Report Error

IoT सुरक्षा बनाए रखने में फर्मवेयर अपडेट का क्या महत्व है?

What is the significance of firmware updates in maintaining IoT security?

[A] They increase the storage capacity of devices

[B] They enhance the user interface

[C] They fix security vulnerabilities and improve device functionality

[D] They reduce power consumption

Correct Answer : They fix security vulnerabilities and improve device functionality


Ques 79 Report Error

सॉफ़्टवेयर ओवर द एयर (SOTA) का मुख्य उद्देश्य क्या है?

What is the main purpose of Software Over The Air (SOTA)?

[A] To facilitate remote software updates for devices

[B] To create new software programs

[C] To protect devices from malware

[D] To improve device battery life

Correct Answer : To facilitate remote software updates for devices


Ques 80 Report Error

भारी ट्रैफिक वाले बड़े नेटवर्क के लिए कौन सी टोपोलॉजी सबसे उपयुक्त है?

Which topology is best suited for large networks with heavy traffic?

[A] Mesh

[B] Star

[C] Tree

[D] Hybrid

Correct Answer : Mesh


Ques 81 Report Error

समझने के लिए मेमो की भाषा __________ और __________ होनी चाहिए।

The language of memos should be __________ and __________ to understand.

[A] Indirect, personal

[B] Direct, concise

[C] Lucid, easy

[D] Concise, difficult

Correct Answer : Lucid, easy


Ques 82 Report Error

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

Which of the following is not an example of verbal communication?

[A] Telephone

[B] Words

[C] Writing

[D] Interview

Correct Answer : Writing


Ques 83 Report Error

निम्नलिखित में से कौन सा IoT एंडपॉइंट का घटक नहीं है

Which of the following is not the component of IoT Endpoint

[A] sensor

[B] gateway

[C] communication module

[D] mcu

Correct Answer : gateway


Ques 84 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] 1110

[B] 0100

[C] 1111

[D] 1011

Correct Answer : 0100


Ques 85 Report Error

वह एकमात्र फ़ंक्शन क्या है जो सभी C प्रोग्राम में अवश्य होना चाहिए?

What is the only function all C programs must contain?

[A] start()

[B] system()

[C] main()

[D] program()

Correct Answer : main()


Ques 86 Report Error

रास्पबेरी पाई द्वारा उपयोग किया जाने वाला ऑपरेटिंग सिस्टम क्या है?

What is the operating system used by Raspberry Pi?

[A] Windows 10

[B] macOS

[C] Raspbian

[D] Ubuntu

Correct Answer : Raspbian


Ques 87 Report Error

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

Which of the following is a system based attack?

[A] Phishing

[B] Session hijacking

[C] Trojan horse

[D] Brute force attack

Correct Answer : Trojan horse


Ques 88 Report Error

DHT11 __________ सेंसर है।

DHT11 is __________ sensor.

[A] Proximity sensor

[B] Humidity sensor

[C] Touch sensor

[D] Pressure sensor

Correct Answer : Humidity sensor


Ques 89 Report Error

निम्नलिखित में से कौन सेंसर की स्मार्टनेस को परिभाषित करता है?

Which of the following defines smartness of sensor?

[A] Quality of data

[B] Circuit size

[C] Circuit components

[D] All of the mentioned

Correct Answer : Quality of data


Ques 90 Report Error

OSI मॉडल में ट्रांसपोर्ट लेयर की क्या भूमिका है?

What is the role of transport layer in OSI Model?

[A] Data conversion and transformation

[B] end to end connectivity using port numbers

[C] Physical transmission of data using 0's and 1's.

[D] None of these

Correct Answer : end to end connectivity using port numbers


Ques 91 Report Error

IoT टर्मिनल उद्योग के निर्माण को बढ़ावा देता है ________

IoT promotes the creation of IoT terminal industry ________

[A] Things

[B] Clusters

[C] Devices

[D] Network

Correct Answer : Clusters


Ques 92 Report Error

Literal क्या है?

What is Literal ?

[A] Literal is the value that is given or assigned to a variable.

[B] Literal is a data type

[C] Literal is similar to String

[D] None of the above

Correct Answer : Literal is the value that is given or assigned to a variable.


Ques 93 Report Error

एलडीआर को _______________ भी कहा जाता है

LDR’s are also called _______________

[A] Photo voltaic cell

[B] Photo resistive cell

[C] Photo emissive cell

[D] All of the mentioned

Correct Answer : Photo resistive cell


Ques 94 Report Error

डीएचसीपी सर्वर का उद्देश्य क्या है?

What is the purpose of the DHCP server?

[A] to provide storage for email

[B] to translate URLs to IP addresses

[C] to translate IPv4 addresses to MAC addresses

[D] to provide an IP configuration information to hosts

Correct Answer : to provide an IP configuration information to hosts


Ques 95 Report Error

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

Which of the following layer of OSI model uses Telnet protocol?

[A] Transport

[B] Application

[C] Network

[D] Session

Correct Answer : Application


Ques 96 Report Error

निम्नलिखित में से कौन सा स्वास्थ्य देखभाल में IoT अनुप्रयोग का एक उदाहरण है?

Which of the following is an example of an IoT application in healthcare?

[A] Smart refrigerator

[B] Wearable fitness tracker

[C] Home security system

[D] Smart thermostat

Correct Answer : Wearable fitness tracker


Ques 97 Report Error

IoT वातावरण में ध्वनि संचार के कुल प्रकार हैं?

Total types of voice communications in IoT environment is?

[A] 1

[B] 2

[C] 3

[D] 4

Correct Answer : 3


Ques 98 Report Error

IaaS का फुल फॉर्म?

Full form of IaaS?

[A] Infrastructure as a Service

[B] Internet as a Service

[C] Internet as a Software

[D] Infrastructure as a Software

Correct Answer : Infrastructure as a Service


Ques 99 Report Error

एंबेडेड सी में टिप्पणियाँ कैसे दर्शायी जाती हैं?

How are comments denoted in Embedded C ?

[A] #

[B] %

[C] ;

[D] //

Correct Answer : //


Ques 100 Report Error

निम्नलिखित में से कौन सा IOT का मुख्य तत्व नहीं है?

Which of the following is not a main element of IOT

[A] People

[B] Process

[C] Security

[D] Things

Correct Answer : People


Related Papers
Latest Updates