Startup probes in Kubernetes

Question:
Given the following startup probe configuration, which of the following statements is correct? (Choose one.)

startupProbe:
  httpGet:
    path: /health
    port: 8080
  failureThreshold: 10
  periodSeconds: 5
  1. The startup probe retries the HTTP check at most five times
  2. After a failure, the probe waits 10 seconds until the next verification
  3. The startup probe disables the liveness and readiness probes until it finishes sucesfully
  4. The probe check must succeed 10 times for Kubernetes to consider the probe successful
Answer:
C - is the correct answer