LPI
117-102 · Question #223
A cronjob must run at least every 11 minutes. The job may take up to 7 minutes to complete, and there mustn't be two jobs at the same time. Which crontab line solves the problem?
The correct answer is C. */10 * * * * myjob. See the full explanation below for the reasoning.
Question
A cronjob must run at least every 11 minutes. The job may take up to 7 minutes to complete, and there mustn't be two jobs at the same time. Which crontab line solves the problem?
Options
- A*/8 * * * * myjob
- B*/9 * * * * myjob
- C*/10 * * * * myjob
- D*/11 * * * * myjob
- E*/12 * * * * myjob
How the community answered
(23 responses)- B4% (1)
- C78% (18)
- D13% (3)
- E4% (1)
Community Discussion
No community discussion yet for this question.