77. Sleep Modes Operation

Question.4

After uploading the code below to an Arduino UNO. Which of the following statements is correct?

Code:

#include <avr/sleep.h>

void setup() {
  sleep_enable();
  sleep_mode();
 sleep_disable();
}

void loop() {
}

Select Answer