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);
Explanation
Correct Answer: C) pinMode(9, OUTPUT);