Question 1/16

Which is a proper use of delay()

loop {
  delay(5000);
}
void setup() {
  Serial.begin(9600);
}
if (name == "Mr. P") {
  Serial.println("I am the teacher");
}
void loop() {
  int milliseconds = 5000;
  delay(milliseconds);
}