जब 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
“Hello friend” फ़्लैश मेमोरी में संगृहीत किया जायेगा इसकी पुष्टि कैन सा मैक्रो करता है :<break-line><break-line>Which macro confirms “Hello friend” will be stored in the Flash memory:
"पिन 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>