13 M4R5.1 Practice Set 7 1 / 98 Q162. फंक्शंस निम्नलिखित में से किस तरीके से जानकारी पास कर सकते हैं? Functions can pass information in which of the following ways (A)Value (B)Reference (C)Stack (D)Both (A) and (B) 2 / 98 Q147. एंबेडेड सी में मल्टीलाइन टिप्पणियां कैसे दर्शायी जाती हैं? How are multiline comments denoted in Embedded C? (A)## (B)/**/ ( C)%% (D)// 3 / 98 Q199. ZigBee loT के लिए सबसे उपयुक्त संचार मानक है। ZigBee is most Suitable communication standard for loT. (A)Low data rate (B)Low power consumption (C)Both (A) and (B) (D)Easy to setup 4 / 98 Q141. How many bits of memory does the bool datatype occupy? बूल डेटा प्रकार कितने बिट मेमोरी घेरता है? (A)2 (B)4 (C)6 (D)8 5 / 98 Q160. एक अच्छे प्रस्तुतकर्ता और संचारक को चाहिए: A good presenter and communicator should: (A) Follow good sequencing of ideas (B)Manage time properly (C)Clear doubts (D)All of these 6 / 98 Q159. Atmega168 एक बिट चिप है। The Atmega 168 is an chip. bit (A)32 (B)8 (C)64 (D)16 7 / 98 Q182. कौन सा Arduino पिन 16x2 कैरेक्टर LCD पर Data5 (D5) पिन से जुड़ा है? लिक्विड क्रिस्टल एलसीडी (12, 11, 5, 4, 3, 2); Which of the Arduino pins is connected to the Data5 (D5) pin on the 16x2 character LCD? Liquid Crystal Icd(12, 11, 5, 4, 3, 2); (A)Pin No. 3 (B)Pin No. 2 (C)Pin No. 5 (D)Pin No. 4 8 / 98 Q170. A good report must have: एक अच्छी रिपोर्ट में यह होना चाहिए: (A) Clear logical structure/ स्पष्ट तार्किक संरचना (B) Extra information about report/रिपोर्ट के बारे में अतिरिक्त जानकारी (C) Both a and b (D) none of these 9 / 98 Q197. सी में, आप एक array कैसे स्थापित करते हैं? In C, how do you set up an array? (A)int k={3,4} (B)int k=new int[2] (C)int k[2] ={3,4}; (D)int k(2)={3,4}; 10 / 98 Q183. आउटपुट के रूप में Arduino सेट पर 9वीं पिन कौन सी कमांड है? Which command is the 9th pin on Arduino set as output? (A)int sensorPin = 9; (B)int sensorValue = 9; (C)pinMode(9, OUTPUT); (D)digitalWrite(9, HIGH); 11 / 98 Q152. What will be the output of the following code? निम्नलिखित कोड का आउटपुट क्या होगा? void setup(){ Serial.begin(9600); } void loop(){ int a=92; int b=101; int c=a&b; Serial.printIn(c); } (A)100 (B)69 (C)68 (D)40 12 / 98 Q120. LDR संवेदक के सिद्धांत पर कार्य करता है LDR (Light Dependent Resistor) sensor works on the principle of (A)Resistivity (B)Photoconductivity (C)Conductivity (D)Both (A) and (C) 13 / 98 Q134. What kind of waves does the IR Sensor work on? आईआर सेंसर किस प्रकार की तरंगों पर काम करता है? (A)Infrared (B)Indigo (C)Ultrasonic (D)Infrasonic 14 / 98 Q180. निम्नलिखित कोड का आउटपुट क्या होगा? What will be the output of the following code? int main() { int i = 25; int k =i %4; printf("%d\n", k); } (A)1 (B)2 (C)3 (D)4 15 / 98 Q163. संचार का उद्देश्य अधिकारियों को कर्मचारियों को करने में मदद करना है The purpose of communication is to help officials to the employees. (A) हटाना/Eliminate (B) उत्साह करना/Motivate (C) धमकी देना/Threaten (D) सूचना देना/Apprise 16 / 98 Q139. What is the output of the code given below? नीचे दिए गए कोड का आउटपुट क्या है? void setup() { Serial.begin(9600); } void loop(){ String s=String(13,BIN); Serial.PrintIn(s); } (A)13 (B)1101 (C)1001 (D)Null 17 / 98 Q137. Arduino नैनो पर micros () फ़ंक्शन का रिज़ॉल्यूशन क्या है? What is the resolution of the micros() function on the Arduino Nano ? (A)7 Microseconds (B)4 Microseconds (C)6 Microseconds (D)2 Microseconds 18 / 98 Q175. What is the output of the following line of code? कोड की निम्नलिखित पंक्ति का आउटपुट क्या है? void main() { printf("%lu\n", sizeof(char)); } (A)21 (B)%fdf (C)1 (D)Null 19 / 98 Q193. 8085 माइक्रोप्रोसेसर में कितने फ्लैग होते हैं? How many flags are there in 8085 Microprocessor? Note: There are five flags in 8085. Sign Flag, Zero Flag, Auxiliary Carry Flag, Parity Flag and Carry Flag. (A)05 (B)09 (C)12 (D)15 20 / 98 Q196. निम्नलिखित में से कौन सी अवधारणा IoT के समान नहीं है? Which of the following concept is not similar to loT? (A)Ubiquitous Sensor Networks / सर्वव्यापी सेंसर नेटवर्क (B)Web of Things/वेब ऑफ थिंग्स (C)Cloud of Things / चीजों का बादल (D)Virtual Things/आभासी चीजें 21 / 98 Q185. निम्नलिखित कोड का आउटपुट क्या होगा? What will be the output of the following code? void main() { int x = 5*6/2+8; printf("%d",x); return 0; } Note: Sept 1: 5*6=30, Step2: 30/2=15, Step3: 15+8=23 (A)20 (B)21 (C)23 (D)19 22 / 98 Q149. लोगों के एक विशिष्ट समूह के लिए है जबकि आम जनता के लिए लक्षित हो सकता है। is meant for a specific group of people while may be aimed forthe general public. (A)circular, notice (B)notice, memo (C)notice, circular (D)memo, circular 23 / 98 Q179. In I2C connection, which pin on the Arduino Uno is utilized for SCL (serial clock)? I2C कनेक्शन में, Arduino Uno पर कौन सा पिन SCL (सीरियल क्लॉक) के लिए उपयोग किया जाता है? (A)D2 (B)A5 (C)A2 (D)A4 24 / 98 Q195. लेखन के लाभों का निर्धारण करें। Determine the benefits of writing. (A) संवाद करने के लिए वक्ता को स्वयं उपस्थित होने की आवश्यकता नहीं है / The speaker himself did not have to be present in order to communicate (B) एक पीढ़ी का ज्ञान संचित किया जा सकता है और अगली पीढ़ी को दिया जा सकता है / The knowledge of one generation could be accumulated and passed on to the next (C) Both (A) & (B) (D) हम जो चाहते हैं उसे दर्शा सकते हैं। We can represent, what we 25 / 98 Q154. What type of signal does the analogWrite() function output? AnalogWrite() फ़ंक्शन किस प्रकार का सिग्नल आउटपुट करता है? (A)Pulse Width Modulated Signal (B)Pulse Code Modulated Signal (C)Pulse Amplitude Modulated Signal (D) Frequency Modulated Signal 26 / 98 Q165. डीसी मोटर के घूमने की दिशा तय करने के लिए किस नियम का प्रयोग किया जाता है? Which rule is used to decide the direction of rotation of DC motor? (A)Coulomb's Law (B)Lenz's Law (C)Fleming's Right-hand Rule (D)Fleming's Left-hand Rule 27 / 98 Q115. IoT नेटवर्क में, सिक्योर शेल (SSH) है: In the loT network, Secure Shell (SSH) is : (A) गेटवे /Gateway (B) सिक्योर नेटवर्क प्रोटोकॉल / Secure network protocol (C) राऊटर /Router (D) फ़ायरवॉल /Firewall 28 / 98 Q151. IoT में, ट्रांसपोर्ट लेयर बिना हैंडशेक /एक्नॉलेजमेंट के कनेक्शन करता है : की मदद से सेट In IoT, Transport layer set up connections without handshakes/ acknowledgements (A) UDP (B)FTP (C)TCP (D)HTTP 29 / 98 Q144. Which of the following control structures is an exit-controlled loop? निम्नलिखित में से कौन सी नियंत्रण संरचना एक निकास-नियंत्रित लूप है? (A)For loop (B)While hile I loop (C)Const and Goto (D)Do-While loop 30 / 98 Q110. सेंसर प्रभावशीलता निम्न में से किस पैरामीटर पर निर्भर करती है? Sensor effectiveness depends on which of the following parameters? (A) रेडिएशन / Radiation (B) सेंसिटिविटी /Sensitivity (C) रेसिस्टिविटी /Resistivity (D) ऊपर के सभी/All of the above 31 / 98 Q146. एंबेडेड सिस्टम में किस मेमोरी स्टोरेज का व्यापक रूप से उपयोग किया जाता है? Which memory storage is widely used in Embedded Systems? (A)EEPROM (B)DRAM (C) Flash memory.. (D)SRAM 32 / 98 Q101. in loT as one of the key characteristics, devices have different hardware platforms and networks. IoT में प्रमुख विशेषताओं में से एक के रूप में, उपकरणों में विभिन्न हार्डवेयर प्लेटफ़ॉर्म और नेटवर्क होते हैं। (A)Sensors (B)Heterogeneity (C)Security (D)Connectivity 33 / 98 Q107. detect the presence or absence of nearby objects without any physical contact. बिना किसी भौतिक संपर्क के आस-पास की वस्तुओं की उपस्थिति या अनुपस्थिति का पता (A)Smoke Sensor (B)IR Sensor (C) Pressure Sensor (D)Proximity Sensor 34 / 98 Q128. निम्न में से कौन सा डेटा प्रकार नहीं है Which of the following is NOT a data type (A)sbit (B)bit (C)dbit (D)unsigned int 35 / 98 Q158. निम्नलिखित Arduino कोड का नतीजा क्या है? What is the outcome of the following Arduino code ? void setup() { Serial.begin(9600); } void setup() { Serial.write(20); } (A) Send a signal to pin 20 on the Arduino board (B) Send a octal number of 20 through the Serial pins (C) Send a byte with value 20 through the Serial pins (D) Send a hexadecimal number of 20 through the Serial pins 36 / 98 Q156. कम्पाइलर को रोकने के लिए मजबूर करते हुए, आप Arduino कंपाइलर को प्रीप्रोसेसर निर्देशों के साथ त्रुटि कैसे थ्रो कर सकते हैं? How can you throw an error with preprocessor directives to Arduino Compiler, forcing to stop compilation? (A)#warning (B)#cut (C)#stop (D)#error 37 / 98 Q192. कोड के निम्नलिखित भाग का आउटपुट क्या होगा? What will be the output of the following piece of code? #include int main() { for(i=0;i < 8; i++); printf("%d", i); return 0; } (A)0 (B)1234567 (C)8 (D)infinite loop 38 / 98 Q164. लगातार मेमोरी स्थानों में संग्रहीत समरूप डेटा का एक सेट कहलाता है A set of homogenous data stored in consecutive memory locations is called (A)List (B)Array (C)Structure (D)Union 39 / 98 Q130. What will the output of the code be if the object is continuously moving away from the sensor? यदि वस्तु लगातार सेंसर से दूर जा रही है तो कोड का आउटपुट क्या होगा? int op = 7; int isObstacle HIGH; void setup() { } pinMode(op, INPUT); Serial.begin(9600); void loop() { isObstacle = digitalRead(op); if (isObstacle == LOW) { Serial.println("1+"); else { } Serial.print("clear+"); delay(200); (A)clear+clear+1+1 (B)1+1+clear+clear (C)clear+clear+clear+clear (D)1+1+clear+1 40 / 98 Q166. निम्नलिखित में से कौन IOT विकास में सहयोग करने में मदद करता है? Which of the following helps to collaborate in loT development? (A)physical computing (B)chemical computing (C)mechanism (D)cloud computing 41 / 98 Q187. What is the output of C Program.? C प्रोग्राम का आउटपुट क्या है? int main() { int a=5; while(a=123) printf("RABBIT\n"); break; printf("GREEN"); return 0; } (A) GREEN (B) RABBIT (C) RABBIT is printed unlimited number of times. (D) Compiler error. 42 / 98 Q133. निम्नलिखित में से कौन सा एक माइक्रोकंट्रोलर में मौजूद होना चाहिए? Which of the following must be present in a microcontroller? (A)CPU, ROM, I/O ports and timers (B)RAM, ROM, I/O ports and timers (C)CPU, RAM, I/O ports and timers (D)CPU, RAM, ROM, I/O ports and timers 43 / 98 Q189. What is the output of C Program.? C प्रोग्राम का आउटपुट क्या है? int main() { int a=25; while(a <= 27) printf("%d ", a); a++ } a++; return 0; } (A)25 25 25 (B)25 26 27 (C)27 27 27 (D)Compiler error 44 / 98 Q103. Stepper motors are स्टेपर मोटरें हैं (A)AC motors (B)DC motors (C) Electromagnets (D) None of the above 45 / 98 Q173. Sensor provides output signal depending on सेंसर प्रदान करता है। के आधार पर आउटपुट सिग्नल (A)Input (B)Physical quantity (C)Both a and b (D) None of the above 46 / 98 Q178. कौन सी IoT के लिए उपयुक्त संचार तकनीक नहीं हो सकती है? Which one cannot be suitable communication technology for loT? (A)Zigbee (B)NFC (C)Bluetooth (D)Wired network 47 / 98 Q135. MQ-135 एक प्रकार का है MQ-135 is a type of (A)Humidity sensor (B) सेंसर गैस/Gas sensor (C) रोशनी संवेदक/Light sensor (D) तापमान संवेदक/Temperature sensor 48 / 98 Q111. निम्न में से किसका उपयोग बोर्ड पर Arduino Sketches अपलोड करने के लिए किया जाता है? Which of the following is used to upload the Arduino Sketches to the board (A)avrgcc (B)g++ (C)cpython (D)avrdude 49 / 98 Q113. IoT नेटवर्क जिसकी रेंज बहुत कम है है The loT networks that has a very short range is (A)WAN (B)LAN (C)Fox (D)Short-range Wireless Network 50 / 98 Q172. निम्न में से कौन सा कठिन कौशल नहीं है? Which of the following is NOT a hard skill? (A) Typing Speed (B)Machine Operation (C)Time Management (D)Coding 51 / 98 Q157. यदि 1 का अर्थ है कि किसी वस्तु का पता लगाया गया है और 0 का अर्थ है कि किसी वस्तु का पता नहीं चला है, तो सेंसर स्थिर होने पर, सेंसर द्वारा आउटपुट 111000 के रूप में देखे जाने पर वस्तु की संभावित गति क्या हो सकती है? If 1 means an object is detected and 0 meaning no object is detected, then considering the sensor stationary, what can be the possible movement of Object if the output by the sensor is observed as 111000? (A) ऑब्जेक्ट स्थिर है / Object is stationary (B) ऑब्जेक्ट अगल-बगल हिल रहा है। Object is oscillating side by side (C) ऑब्जेक्ट दूर जा रहा है / Object is moving away (D) ऑब्जेक्ट नजदीक आ रहा है Object is moving closer 52 / 98 Q132. इनमें से कौन सुनने के कौशल को नहीं बढ़ाता है? Which of these does not enhance listening skills ? (A) Attention/ध्यान दें (B)Clear perception / स्पष्ट धारणा (C) Frankness/स्पष्टवादिता (D) Ignoring/उपेक्षा करना 53 / 98 Q174. M2M संचार सफलता के लिए आवश्यक अवधारणा क्या हैं। हैं? What are/is essential concept(s) for M2M Communication success? (A) निरंतर कनेक्टिविटी/Continuous connectivity (B) निष्क्रिय उपकरणों के लिए संदेश वितरण/Message Delivery for sleeping devices (C) संदेश संचार पथ चयन/Message communication path selection (D) ऊपर के सभी/All of the above 54 / 98 Q200. एक व्यक्ति के कार्यों को विवेक द्वारा दृढ़ता से नियंत्रित किए जाने की सबसे अधिक संभावना है यदि उनके पास एक (एन) प्रकार का व्यक्तित्व है? An individual's actions are most likely to be strongly controlled by conscience if they have a(n) type of personality? (A) आतारक निदाशत व्यक्तित्वात cted personalit (B) अन्य निर्देशित व्यक्तित्व / Other-directed personality (C) आंशिक निर्देशित / Partial-Directed (D) इनमे से कोई भी नहीं / None of the above 55 / 98 Q119. श्रोताओं की आँखों में किस प्रकार का वक्ता दिखता है? What type of speaker looks into the eyes the audience? (A) कॉफिडेंट /Confident (B) रौदे /Rude (C) इम्पॉटेंट। /Impatient (D) इमपोलिते /Impolite 56 / 98 Q169. Informal report is one of: अनौपचारिक रिपोर्ट इनमें से एक है: (A)Progress report/प्रगति रिपोर्ट (B)formulate report/रिपोर्ट तैयार करें (C)Both A, B (D) None 57 / 98 Q104. 127. Linear actuators are used in लीनियर एक्चुएटर्स का उपयोग जाता है में किया (A)Machine tools (B)Industrial machinery (C)both A and B (D) None 58 / 98 Q105. Image sensors are found in इमेज सेंसर पाये जाते हैं (A)Cameras (B)Night-vision equipment (C)Sonars (D)All of the above 59 / 98 Q121. डिवाइस के करीब डेटा प्रोसेसिंग की अनुमति दें। _allow data processing close to device. (A) एज कम्प्यूटिंग/Edge Computing (B) क्लाउड कम्प्यूटिंग/Cloud Computing (C) कोहरा कम्प्यूटिंग/Fog Computing (D) ग्रिड कंप्यूटिंग/Grid Computing 60 / 98 Q112. IoT अनुप्रयोगों में उपयोग किए जाने वाले एक्चुएटर्स हैं: The actuators used in loT applications are : (A) रिले/Relay (B) डीसी मोटर्स/Dc Motors (C) सर्वो मोटर्स/Servo Motors (D) ऊपर के सभी /All of these 61 / 98 Q123. निम्नलिखित में से कौन एक प्रभावी प्रस्तुति की कुंजी है? Which of the following is the key to an effective presentation? (A)Image (B)Styles (C)Limited words and key phrases (D) Layouts 62 / 98 Q150. अधिकांश सेंसर में किस प्रकार का स्थानांतरण कार्य होता है? Most sensors have what type of transfer function? (A)zero (B)Linear (C)Infinity (D)Non-linear 63 / 98 Q177. एक संवेदक जिस सबसे छोटे अंतर का पता लगा सकता है वह है: The smallest difference that a sensor can detect is: (A)Scale (B)accuracy (C)Resolution (D)Precision 64 / 98 Q148. निम्नलिखित प्रोग्राम का आउटपुट क्या है? What is the output of the following program? for(;;) { Statements { (A)Error (B)Statements will run forever (C)This an infinite loop (D)Both (B) and (C) 65 / 98 Q167. एम्बेडेड सिस्टम में टास्क स्वैपिंग के लिए निम्न में से कौन सी विधि बेहतर है? Which of the following method is better for task swapping in the embedded systems? (A) टाइम स्लाइस / Time slice (B) RMS (C) कोआपरेटिव /Cooperative multitasking (D) प्रे-एम्प्टीवे /pre-emptive 66 / 98 Q168. Report are often used to display the result of: रिपोर्ट का उपयोग अक्सर परिणाम प्रदर्शित करने के लिए किया जाता है: (A) Experiment/प्रयोग (B)Investigation/जांच (C) Inquiry/पूछताछ (D)All of these/ये सभी 67 / 98 Q102. Devices that transforms electrical signals into physical movements उपकरण जो विद्युत संकेतों को भौतिक गतिविधियों में परिवर्तित करते हैं (A)Sensors (B)Actuators (C)Switches (D)Display 68 / 98 142. What are the three components of a for-loop? फॉर-लूप के तीन घटक क्या हैं? (A) initialization, conditional, increment/decrement (B) conditional, memory allocation, memory deletion (C) reset, increment, conditional (D) reset, increment/decrement, memory allocation 69 / 98 Q186. निम्नलिखित में से कौन-सा/से सुझाई गई समय प्रबंधन तकनीक है/हैं? Which of following is/are suggested time management technique(s)? (A)Make good use of technology (B)Clean up and get organized (C)Concentrate on one key task at a time (D)All of the above. 70 / 98 Q122. निम्नलिखित कोड का आउटपुट क्या होगा? What will be the output of the following code ? #include void solve() { int b = 4; int res = b++ + ++b +++b; printf("%d", res); } int main() { solve(); return 0; } (A)20 (B)15 (C)12 (D)17 71 / 98 Q138. Can the Arduino read sensor data from a pin while the delay() function is in effect? क्या Arduino delay() फ़ंक्शन के प्रभावी होने पर पिन से सेंसर डेटा पढ़ सकता है? (A)Yes (B)No (C)Cant say (D)May be 72 / 98 Q127. नीचे दिए गए कोड का उद्देश्य क्या है यदि इसे Arduino Uno पर निष्पादित किया जाता है? What is the objective of the code given below if it is executed on the Arduino Uno ? (A)Fill EEPROM with 1's (B)Fill EEPROM with 0's (C)Clear EEPROM (D) Export EEPROM data 73 / 98 Q153. What is the purpose of the tone() function? tone() फ़ंक्शन का उद्देश्य क्या है? (A) To generate a sine wave (B) To generate a cosine wave (C) To generate a stable voltage level (D) To generate a square wave 74 / 98 Q117. निम्नलिखित Arduino कोड का आउटपुट क्या होगा? What will be the output of the following Arduino code? void main() { int k = 0; double d = 10.21; sizeof(k + d)); void loop() {} } A)10.21 (B)8 (C)null (D)23 75 / 98 Q194. आउटपुट वोल्टेज के रूप में 270mV के लिए सेल्सियस LM35 में तापमान क्या है? What is temperature in Celsius LM35 for corresponding 270mV as a output voltage ? (A)50 (B)25 (C)27 (D)54 76 / 98 Q140. यह जांचने की प्रक्रिया क्या है कि पठन के पिछले चरणों का ठीक से पालन किया गया है या नहीं? What is the process to check whether previous stages of reading have been followed properly? (A)Survey (B)Reading (C)Question (D)Review 77 / 98 Q109. एंबेडेड C है: Embedded C is: (A)A subset of traditional C (B)An extension of traditional C (C)A superset of traditional C (D)Same as traditional C 78 / 98 Q116. वक्ता का स्वर कैसा होना चाहिए। How should the tone of a speaker be like. (A) लाउड /Loud (B) लौ /Low (C) क्लियर /Clear (D) सॉफ्ट /Soft 79 / 98 Q161. निम्नलिखित में से कौन सी एम्बेडेड सी भाषा की प्रॉपर्टी है? Which of the following is the property of embedded C language ? (A)Hardware independent (B)Used for web applications (C)Used with limited resources (D)Used for native development 80 / 98 Q125. इनमें से कौन अहंकार व्यक्त कर सकता है? Which of these may convey arrogance? (A) कंधे उचकाना/Shoulder s (B) संयुक्त उंगलियां/Jointed fingers (C) हाथ ढीले झूल रहे हैं/Hands swinging loosely (D) नुकीली उंगली/Pointed finger 81 / 98 Q131. एंबेडेड (सी) में टिप्पणियों को कैसे दर्शाया गया है How are comments denoted in Embedded (C) (A)# (B)% (C); (D)// 82 / 98 Q155. How many arguments does the analogRead() function have? AnalogRead() फ़ंक्शन में कितने arguments हैं? (A)1 (B)2 (C)3 (D)4 83 / 98 Q143. Which one of the control structures is similar to the if-else statement? कौन सी नियंत्रण संरचना if-else कथन के समान है? (A)Switch-case (B)For loop (C)While loop (D)Continue 84 / 98 Q176. M2M की कौन सी विशेषता नहीं है? Which one is not the feature of M2M? (A) कम गतिशीलता/Low Mobility (B) समय नियंत्रित/Time Controlled (C) सर्किट बदलना/Circuit Switched (D) कम बिजली की खपत /Low Power Consumption 85 / 98 Q188. Which sensors resistance value varies with respect to light intensity? प्रकाश की तीव्रता के संबंध में किस प्रतिरोध मान भिन्न होता है? सेंसर का (A)LDR (B)Photosensitive (C)Bio (D)All the above 86 / 98 Q126. 8051 में RAM मेमोरी का आकार कितना होता है? What is the size of RAM memory in 8051 ? #include int pin=13; void setup() { pinMode(pin, OUTPUT); Serial.begin(9600); void loop() { for(int i=0;i (A)32 bytes (B)128 bytes (C)64 bytes (D)256 bytes 87 / 98 Q198. MQ2 गैस सेंसर के कितने टर्मिनल हैं? How many terminals does the MQ2 Gas Sensor have? (A)1 (B)2 (C)3 (D)4 88 / 98 Q129. निम्नलिखित कोड का आउटपुट क्या होगा? 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; } (A)40 (B)20 (C)5 (D)10 89 / 98 Q171. अल्ट्रासोनिक सेंसर में pulseln() के माध्यम से कौन सा पैरामीटर लिया जाता है? Which parameter is taken through pulseln() in ultrasonic sensor? (A) वोल्टेज।/Voltage (B) फ्रीक्वेंसी /Frequency (C) टाइम दरशन / Time duration (D) दूरी/Distance 90 / 98 Q191. साक्षात्कार की तैयारी के लिए आवश्यक क्रम है: The sequence required for the preparation of an interview is: (A) जॉब-खोज, आत्म-विश्लेषण और पहचान कौशल/Job-searching, Self-Analyzing and Identifying skills (B) पहचान कौशल, नौकरी खोज और आत्म-विश्लेषण/Identifying skills, Job-searching and Self-Analyzing (C) स्व-विश्लेषण, पहचान कौशल और नौकरी खोज /Self-Analyzing, Identifying skills and job-searching (D) स्व-विश्लेषण, नौकरी-खोज और पहचान कौशल/Self-Analyzing, job-searching and Identifying skills 91 / 98 Q190. "पिन 1" का आउटपुट क्या है यदि "पिन 2" को "1011" भेजा जाता है जहां 15V है What is the output of "pin1" if "pin2" is sent "1011" where 1 is 5V and 0 is OV? 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 92 / 98 Q145. एक सिस्टम में सेंध लगाने के लिए हैकर जिस स्कोप का उपयोग कर सकता है, उसे कहा जाता है: The scope that hacker can use to break into a system is called as: (A) हमले की सतह/Attack surface. (B) रक्षा/Defense (C) कम से कम विशेषाधिकार का सिद्धांत/Principle of least privilege (D) जोखिम न्यूनीकरण/Risk mitigation 93 / 98 Q106. Gas sensors are used to detect gases. गैस सेंसर का उपयोग गैसों का पता लगाने के लिए किया जाता है। (A) Toxic (B)Natural (C)Oxygen (D)Hydrogen 94 / 98 Q108. sensor is used for automatic door controls, automatic parking system, automated sinks, automated toilet flushers, hand dryers. सेंसर का उपयोग स्वचालित दरवाजा नियंत्रण, स्वचालित पार्किंग प्रणाली, स्वचालित सिंक, स्वचालित शौचालय फ्लशर, हैंड ड्रायर के लिए किया जाता है। (A)Smoke Sensor (B)IR Sensor (C) Temperature Sensor (D)Motion Sensor 95 / 98 Q181. निम्नलिखित में से किसका उपयोग जोखिम विश्लेषण के लिए किया जाता है? Which of the following is used for risk analysis? (A)DREAD (B)OWASP (C)STRIDE (D)DAR 96 / 98 Q124. संचार की प्रमुख श्रेणियां क्या हैं? What are the major categories of communications? (A) भाषण, लेखन/Speech, writing (B) मुद्रण/Printing (C) इलेक्ट्रॉनिक संचार/Electronic communication (D) ऊपर के सभी/All of the above 97 / 98 Q184. जब माइक्रोकंट्रोलर कुछ अंकगणितीय संक्रियाओं को निष्पादित करता है, तो निम्नलिखित में से किस रजिस्टर के फ्लैग बिट प्रभावित होते हैं? When the microcontroller executes some arithmetic operations, then the flag bits of which of the following register are affected? (A)DPTR (B)PSW (C)PC (D)SP 98 / 98 Q136. निम्नलिखित में से कौन सा नियमों का एक स्थापित सेट है जो यह निर्धारित करता है कि एक ही नेटवर्क में विभिन्न उपकरणों के बीच डेटा कैसे प्रसारित किया जाता है Which of the following is Q136. निम्नलिखित में से कौन सा नियमों का एक स्थापित सेट है जो यह निर्धारित करता है कि एक ही नेटवर्क में विभिन्न उपकरणों के बीच डेटा कैसे प्रसारित किया जाता है Which of the following is an established set Of rules that determines how data is transmitted between different device in the same network an established set Of rules that determines how data is transmitted between different device in the same network (A)Network connection (B)TCP IP protocol (C)Network protocol (D)TCP protocol Your score is