page-banner
Chapter-4 (Part-1) Building IoT applications
Q46.
जब EN लाइन ................. दिखाती है और RS लाइन ............ होती है तो LCD डेटा के टेक्स्ट फॉर्म को प्रदर्शित करता है :<break-line><break-line>LCD displays the text form of data when EN line shows __________ and RS line is__________:
A. 0 से 1 ट्रांज़िशन और हाई/0 to 1 transitions & High
B. 1 से 0 ट्रांज़िशन और हाई/1 to 0 transitions & High
C. 0 से 1 ट्रांज़िशन और लो/0 to 1 transitions & Low
D. 1 से 0 ट्रांज़िशन और लो/1 to 0 transitions & Low
View Answer
Q47.
निम्नलिखित भाषाओँ का उपयोग करके Arduino को प्रोग्राम किया जा सकता है :<break-line><break-line>Arduino can be programmed using following languages:
A. Python
B. C++
C. दोनों A और B/Both A and B
D. इनमें से कोई नहीं/None of above
View Answer
Q48.
“Hello friend” फ़्लैश मेमोरी में संगृहीत किया जायेगा इसकी पुष्टि कैन सा मैक्रो करता है :<break-line><break-line>Which macro confirms “Hello friend” will be stored in the Flash memory:
A. Serial.print(F("Hello Friend"));
B. Serial.print(A("Hello Friend"));
C. Serial.print(C("Hello Friend"));
D. Serial.print(N("Hello Friend"));
View Answer
Q49.
Arduino में रेखाकित ............ एक्सटेंशन के साथ सेव करते है :<break-line><break-line>Sketches in Arduino are saved with the extension…………...
A. .exe
B. .ino
C. .ide
D. .doc
View Answer
Q50.
"पिन 1" का आउटपुट क्या है यदि "पिन 2" को "1011" भेजा जाता है जहां 1 5V है और 0 0V है?<break-line><break-line>What is the output of “pin1” if “pin2” is sent “1011” where 1 is 5V and 0 is 0V? <pre><code>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); } }</code></pre>
A. 1110
B. 0100
C. 1111
D. 1011
View Answer