14. PWM Programming- Arduino

Question.6

What will be the frequency of PWM on pin 3?

void setup() {
  pinMode(3, OUTPUT);
}

void loop() {
    analogWrite(3, 150);
}

Select Answer