Arduino पर 9वां पिन किस कमांड से आउटपुट के रूप में सेट किया गया है?
With which command is the 9th pin on Arduino set as output?
A)
B)
C)
D)
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);