Jul 2024 M4-R5.1

1 / 100

which property of a light sensor describes its ability to detect low-intensity light signals in the presence of noise?
प्रकाश संवेदक का कौन सा गुण शोर की उपस्थिति में कम तीव्रता वाले प्रकाश संकेतों का पता लगाने की उसकी क्षमता का वर्णन करता है?

2 / 100

Which type of actuators is commonly used in robotics and can provide precise and accurate movements, such as in robotic arms or legs?
किस प्रकार के एक्चुएटर आमतौर पर रोबोटिक्स में उपयोग किए जाते हैं और सटीक और सटीक गति प्रदान कर सकते हैं, जैसे रोबोटिक बाहों या पैरों में?

3 / 100

Which of the following is not a built-in data type in C?
निम्नलिखित में से कौन सा C में बिल्ट-इन डेटा प्रकार नहीं है?

4 / 100

What is the output of the following code?
निम्नलिखित कोड का आउटपुट क्या है?
#define MULTIPLY(A) A*A
void setup() {Serial.begin(9600);
int result =MULTIPLY(2+3);
Serial.print(result);}
void loop()
{//do nothing…}

5 / 100

What is the purpose of compiling code?
कोड संकलित करने का उद्देश्य क्या है?

6 / 100

Which of the following is an example of an IoT device that has no direct connection to the internet?
निम्नलिखित में से कौन सा IoT डिवाइस का उदाहरण है जिसका इंटरनेट से कोई सीधा संबंध नहीं है?

7 / 100

What is the term used for skills applicable to all professions?
सभी व्यवसायों पर लागू होने वाले कौशल के लिए प्रयुक्त शब्द क्या है?

8 / 100

What is the purpose of a penetration test in IoT security?
IoT सुरक्षा में प्रवेश परीक्षण का उद्देश्य क्या है?

9 / 100

What is the purpose of RPL?
आर.पी.एल. का उद्देश्य क्या है?

10 / 100

An IoT device may consists of several interfaces for connection to other devices through ………..mode
एक IoT डिवाइस में …………..मोड के माध्यम से अन्य डिवाइसों से कनेक्शन के लिए कई इंटरफेस हो सकते हैं

11 / 100

What is the output of the following code?
निम्नलिखित कोड का आउटपुट क्या है?
int i,j;
for(i=0;i<3;i++){
for(j=0;j<2;j++){
printf(“%d%d”,i,j);
}
}

12 / 100

What is the return type of the following function?
निम्नलिखित फ़ंक्शन का रिटर्न प्रकार क्या है?
float calculateaverage(float arr[], int n){
float sum=0;
for(int i=0;i<n;i++){
sum+=arr[i];
}
return sum/n;
}

13 / 100

…………….is the role of encryption in IoT security?
IoT सुरक्षा में एन्क्रिप्शन की भूमिका क्या है?

14 / 100

Logical operations in a computer are done by …………………
कंप्यूटर में तार्किक संचालन ………………… द्वारा किया जाता है।

15 / 100

Which step in the IoT design methodology involves testing and validating the system in a real-world environment?
IoT डिज़ाइन पद्धति में कौन सा चरण वास्तविक दुनिया के वातावरण में सिस्टम का परीक्षण और सत्यापन शामिल करता है?

16 / 100

what is the voltage rating of the AC supply typically controlled by a relay module?
रिले मॉड्यूल द्वारा सामान्यतः नियंत्रित एसी आपूर्ति की वोल्टेज रेटिंग क्या है?

17 / 100

What is the purpose of a business letter?
व्यापारिक पत्र का उद्देश्य क्या है?

18 / 100

What is the sensor/protocol used in GSN?
GSN में प्रयुक्त सेंसर/प्रोटोकॉल क्या है?

19 / 100

Which of the following is an example of a microcontroller commonly used in the embedded ecosystem?
निम्नलिखित में से कौन सा एम्बेडेड इकोसिस्टम में सामान्यतः उपयोग किए जाने वाले माइक्रोकंट्रोलर का उदाहरण है?

20 / 100

What is the objective of the code given below if it is executed on the Arduino Uno?
यदि नीचे दिए गए कोड को Arduino Uno पर निष्पादित किया जाए तो इसका उद्देश्य क्या है?
#include
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);
}

21 / 100

In the given C code, for loop executes for
दिए गए C कोड में, for loop किसके लिए निष्पादित होता है?
#include
void main()
{
int x=10;
for(; 😉
{
printf(“%d\n”,x);
}
}

22 / 100

What will be the output of the following code?
निम्नलिखित कोड का आउटपुट क्या होगा?
void main()
{
int x=5*6/2+8;
printf(“%d”,x);
return 0;
}

23 / 100

Which of the following is not a type of Microcontroller architecture?
निम्नलिखित में से कौन सा माइक्रोकंट्रोलर आर्किटेक्चर का प्रकार नहीं है?

24 / 100

What is the value of x after the following code is executed?
निम्नलिखित कोड निष्पादित होने के बाद x का मान क्या है?
int x=5;
if(x<10){x+=2;}
else
{x-=2;}

25 / 100

Typically which programming language used by the Arduino IDE to code easily
Arduino IDE द्वारा आसानी से कोड करने के लिए आमतौर पर किस प्रोग्रामिंग भाषा का उपयोग किया जाता है

26 / 100

What will be the output of the following arduino code?
निम्नलिखित Arduino कोड का आउटपुट क्या होगा?
void main(){
int k=0;
double d=10.21;
printf(“%lu”,sizeof(k+d));
}
void loop()
{}

27 / 100

Which development tool is used for cloud-based IoT platforms and services?
क्लाउड-आधारित IoT प्लेटफॉर्म और सेवाओं के लिए किस विकास उपकरण का उपयोग किया जाता है?

28 / 100

What will be the output of the following code?
निम्नलिखित कोड का आउटपुट क्या होगा?
#include
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;
}

29 / 100

A device that provides a usable output in response to a specified measurement is called a……….
एक उपकरण जो निर्दिष्ट माप के जवाब में एक प्रयोग करने योग्य आउटपुट प्रदान करता है उसे ………. कहा जाता है।

30 / 100

……….is the self-concept of what we think about the self.
……….यह आत्म-अवधारणा है कि हम स्वयं के बारे में क्या सोचते हैं।

31 / 100

Choose the correct option for indexing of the given code
दिए गए कोड की अनुक्रमणिका के लिए सही विकल्प चुनें
int main()
{
int xyz(8);
return 0;
}

32 / 100

What type of sensor is commonly used to detect motion in IoT applications?
IoT अनुप्रयोगों में गति का पता लगाने के लिए आमतौर पर किस प्रकार के सेंसर का उपयोग किया जाता है?

33 / 100

What is the role of big data in IoT’s smart Grid architecture?
IoT के स्मार्ट ग्रिड आर्किटेक्चर में बड़े डेटा की क्या भूमिका है?

34 / 100

In the do…….while loop instructions are………………..
do…….while लूप में निर्देश ……………….. होते हैं।

35 / 100

Which of the following is not a trait of a good negotiator?
निम्नलिखित में से कौन सा एक अच्छे वार्ताकार का लक्षण नहीं है?

36 / 100

Which of the following challenge arises when we use many devices on the same network?
जब हम एक ही नेटवर्क पर कई डिवाइस का उपयोग करते हैं तो निम्नलिखित में से कौन सी चुनौती उत्पन्न होती है?

37 / 100

How are keyword argument specified in the function heading?
फंक्शन हेडिंग में कीवर्ड तर्क कैसे निर्दिष्ट किए जाते हैं?

38 / 100

What is the output of the following program?
निम्नलिखित प्रोग्राम का आउटपुट क्या है?
for(; 😉
{
statements
}

39 / 100

What is the output of the following code snippet
निम्नलिखित कोड स्निपेट का आउटपुट क्या है
int a=10, b=5;
if(a>b){
printf(“a is greater”);
}
else
{
printf(“b is greater”);
}

40 / 100

Which of the following is not a guided medium?
निम्नलिखित में से कौन सा एक निर्देशित माध्यम नहीं है?

41 / 100

what action does the following statement performs? digitalWrite(ledPin, HIGH);
निम्नलिखित कथन क्या क्रिया करता है? digitalWrite(ledPin, HIGH);

42 / 100

Who has first proposed the term “Internet-of-Things”?
“इंटरनेट-ऑफ-थिंग्स” शब्द का सर्वप्रथम प्रस्ताव किसने रखा था?

43 / 100

Which of the following cable is least susceptible to electromagnetic interface?
निम्नलिखित में से कौन सी केबल विद्युत चुम्बकीय इंटरफेस के प्रति सबसे कम संवेदनशील है?

44 / 100

Which is the core wrapper of GSN?
GSN का मुख्य आवरण कौन सा है?

45 / 100

How can practicing good etiquette and manners impact one’s self-esteem?
अच्छे शिष्टाचार और तौर-तरीकों का पालन करने से किसी के आत्म-सम्मान पर क्या असर पड़ सकता है?

46 / 100

What is the purpose of a button in Arduino platform?
Arduino प्लेटफ़ॉर्म में बटन का उद्देश्य क्या है?

47 / 100

How does practicing mindfulness contribute to building a positive personality?
सकारात्मक व्यक्तित्व के निर्माण में माइंडफुलनेस का अभ्यास किस प्रकार योगदान देता है?

48 / 100

The HC-05 bluetooth module is primarily used for
HC-05 ब्लूटूथ मॉड्यूल मुख्य रूप से किसके लिए उपयोग किया जाता है

49 / 100

communication is the task of imparting
संचार, संदेश देने का कार्य है।

50 / 100

Materials distributed to the audience to supplement the contents of the presentation is………..
प्रस्तुति की सामग्री को पूरक करने के लिए दर्शकों को वितरित की जाने वाली सामग्री है……..

51 / 100

the difference between the button of a trough and the top of a peak is called the……….of the signal
किसी गर्त के बटन और शिखर के शीर्ष के बीच के अंतर को सिग्नल का …….. कहा जाता है

52 / 100

which type of sensor is used to detect changes in light intensity in IoT devices?
IoT उपकरणों में प्रकाश की तीव्रता में परिवर्तन का पता लगाने के लिए किस प्रकार के सेंसर का उपयोग किया जाता है?

53 / 100

The difference between the bottom of a trough and the top of a peak is called the………….of the signal.
किसी गर्त के तल और शिखर के शीर्ष के बीच के अंतर को सिग्नल का ………… कहा जाता है।

54 / 100

What type of system is an automated washing machine classified as?
स्वचालित वाशिंग मशीन को किस प्रकार की प्रणाली के रूप में वर्गीकृत किया गया है?

55 / 100

Which of the following is not a trait of an effective communicator?
निम्नलिखित में से कौन सा एक प्रभावी संचारक का गुण नहीं है?

56 / 100

what is the role of a microcontroller in IoT systems?
IoT प्रणालियों में माइक्रोकंट्रोलर की क्या भूमिका है?

57 / 100

How can effective time management contribute to work-life balance?
प्रभावी समय प्रबंधन कार्य-जीवन संतुलन में कैसे योगदान दे सकता है?

58 / 100

The core element of architecture of smart city is…………
स्मार्ट सिटी की वास्तुकला का मुख्य तत्व है………….

59 / 100

Which is/are the key characteristics of IoT?
IoT की प्रमुख विशेषताएँ क्या है/हैं?

60 / 100

In the formula for IQ, CA stands for…………….
IQ के सूत्र में CA का अर्थ है………….

61 / 100

What will be the output of the following code?
निम्नलिखित कोड का आउटपुट क्या होगा?
int main()
{
int i=25;
int k=i%4;
printf(“%d\n”,k);
}

62 / 100

Which function is used to calculate the square root of a number in C?
C में किसी संख्या का वर्गमूल निकालने के लिए किस फ़ंक्शन का उपयोग किया जाता है?

63 / 100

What action does the following statement performs?
निम्नलिखित कथन क्या क्रिया करता है?
Serial.println(“for (int i=0;i<6;i+=2)”);
{
for (int i=0;i<6; i+=2)
{
Serial.println(i);
}
}

64 / 100

Which of the following function outputs a value on the pin?
निम्नलिखित में से कौन सा फ़ंक्शन पिन पर मान आउटपुट करता है?

65 / 100

Which of the following is an example of an IoT application in the security and surveillance industry?
निम्नलिखित में से कौन सा सुरक्षा और निगरानी उद्योग में IoT एप्लिकेशन का उदाहरण है?

66 / 100

How many errors are in the code?
कोड में कितनी गलतियाँ हैं?
int i=10;
void setup(){
pinMode(i,OUTPUT);
digitalWrite(HIGH);
}
Void loop(){
//do nothing
}

67 / 100

To speed up the processor operations, the processor includes some internal memory storage locations, called…….
प्रोसेसर के संचालन को तेज करने के लिए, प्रोसेसर में कुछ आंतरिक मेमोरी स्टोरेज स्थान शामिल होते हैं, जिन्हें…… कहा जाता है।

68 / 100

What is the optiboot bootloader in the Arduino IDE
Arduino IDE में ऑप्टिबूट बूटलोडर क्या है?

69 / 100

Two most common function in Arduino IDE
Arduino IDE में दो सबसे सामान्य कार्य

70 / 100

Which of following is/are suggest time management technique(s)?
निम्नलिखित में से कौन सी समय प्रबंधन तकनीक का सुझाव देती है/हैं?

71 / 100

A system that uses a measurement of the output and compares it with the desired output
एक प्रणाली जो आउटपुट के माप का उपयोग करती है और इसकी तुलना वांछित आउटपुट से करती है

72 / 100

How are elements stored in a C array?
C ऐरे में तत्वों को कैसे संग्रहीत किया जाता है?

73 / 100

Which of the following is NOT a key element of effective communication?
निम्नलिखित में से कौन सा प्रभावी संचार का प्रमुख तत्व नहीं है?

74 / 100

HTTPS is the ……………layer protocol
HTTPS …………… लेयर प्रोटोकॉल है

75 / 100

A software that helps to protect the computer from any unauthorized code or software that creates a threat to the system is called………….
एक सॉफ्टवेयर जो कंप्यूटर को किसी भी अनधिकृत कोड या सॉफ्टवेयर से बचाने में मदद करता है जो सिस्टम के लिए खतरा पैदा करता है उसे …………. कहा जाता है।

76 / 100

A real or perceived threat or challenge that causes the body to product a response is a(n)…….
एक वास्तविक या कथित खतरा या चुनौती जो शरीर को प्रतिक्रिया उत्पन्न करने के लिए प्रेरित करती है, एक(एन)…… है।

77 / 100

What is the primary application of IoT in transportation?
परिवहन में आईओटी का प्राथमिक अनुप्रयोग क्या है?

78 / 100

A home thermostat is an example of a……………..
घरेलू थर्मोस्टेट …………. का एक उदाहरण है।

79 / 100

Which of the following is the correct syntax for reading data from a sensor connected to an analog input pin?
एनालॉग इनपुट पिन से जुड़े सेंसर से डेटा पढ़ने के लिए निम्नलिखित में से कौन सा सही सिंटैक्स है?

80 / 100

Which of the following is an attribute of effective communication?
निम्नलिखित में से कौन सा प्रभावी संचार का गुण है?

81 / 100

A component of IoT which transform electrical signal to physical movement it referred as……….
IoT का एक घटक जो विद्युत संकेत को भौतिक गति में परिवर्तित करता है, उसे ………. कहा जाता है।

82 / 100

………….is a serial communication protocol used to transmit/receive data serially at a specific baud rate.
………….एक धारावाहिक संचार प्रोटोकॉल है जिसका उपयोग विशिष्ट बॉड दर पर धारावाहिक रूप से डेटा प्रेषित/प्राप्त करने के लिए किया जाता है।

83 / 100

Full form of SANETs
SANETs का फुल फॉर्म

84 / 100

Which one is the bi-directional communication model in IoT?
IoT में द्वि-दिशात्मक संचार मॉडल कौन सा है?

85 / 100

which of the following IoT networks has a very short range?
निम्नलिखित में से किस IoT नेटवर्क की रेंज बहुत कम है?

86 / 100

Choose the correct option of C program having array:
ऐरे वाले C प्रोग्राम का सही विकल्प चुनें:
int main()
{
int xyz(4) =[10, 20, 40, 40];
printf(“%d”,xyz(1));
}

87 / 100

Which component in IoT is responsible for collecting and detecting physical data from the environment
IoT में कौन सा घटक पर्यावरण से भौतिक डेटा एकत्र करने और पता लगाने के लिए जिम्मेदार है

88 / 100

What role does self-control play in self-discipline?
आत्म-अनुशासन में आत्म-नियंत्रण की क्या भूमिका है?

89 / 100

Which function is used for PWM pin in Arduino?
Arduino में PWM पिन के लिए कौन सा फ़ंक्शन उपयोग किया जाता है?

90 / 100

Which of the following is not a built-in data type in C language?
निम्नलिखित में से कौन सा C भाषा में अंतर्निहित डेटा प्रकार नहीं है?

91 / 100

Which of the following is NOT a type of body language?
निम्नलिखित में से कौन सा शारीरिक भाषा का प्रकार नहीं है?

92 / 100

what does body language NOT improve?
बॉडी लैंग्वेज में क्या सुधार नहीं होता?

93 / 100

What is the use of the Relay (Dual Channel) Module?
रिले (डुअल चैनल) मॉड्यूल का उपयोग क्या है?

94 / 100

What action does the following statement performs?
निम्नलिखित कथन क्या कार्रवाई करता है?
while(analogRead(sensorPin)>100)
{
flashLED();
}

95 / 100

the output of given C code is:
दिए गए C कोड का आउटपुट है:
#include
int main()
{
int x=1,y=1,z;
z=x++ +y;
printf(“%d,%d”, x,y);
}

96 / 100

What is the use of the IR sensor?
आईआर सेंसर का उपयोग क्या है?

97 / 100

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 setup(){
isBarrier=digitalRead(op);
if(isBarrier==LOW){
Serial.println(“1+”);
}
Else{
Serial.print(“Clear+”);
}
Delay(100);
}

98 / 100

Microcontroller used in Arduino UNO prototyping board is…….
Arduino UNO प्रोटोटाइपिंग बोर्ड में प्रयुक्त माइक्रोकंट्रोलर …………. है।

99 / 100

Which of the following is a communication model commonly used in IoT networks?
निम्नलिखित में से कौन सा संचार मॉडल सामान्यतः IoT नेटवर्क में उपयोग किया जाता है?

100 / 100

What is the value of x after the following code is executed?
निम्न कोड निष्पादित होने के बाद x का मान क्या है?
int x=5;
if(x<10){x+=2;}
else
{x-=2;}

Your score is

The average score is 47%

0%