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);
Explanation
To set the 9th pin of the Arduino as an output, the correct command is:
Correct Command:
pinMode(9, OUTPUT);
This command configures pin 9 as an output pin, allowing you to control it using other functions like digitalWrite.
Correct Answer:
(D) pinMode(9, OUTPUT);
Correct Answer: D) pinMode(9, OUTPUT);