LPIC-1 GNU and Unix Commands Practice Question
Exhibit
Refer to the exhibit. 30 4 1 * * /usr/bin/backup
Refer to the exhibit. When will the backup script run?
⚠ Common exam trap
LPI often tests the misconception that a `*` in the day-of-week field implies 'every day' but candidates forget that the day-of-month field of `1` restricts execution to only the 1st, not daily.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Monthly at 4:30 AM on the 1st
The cron entry `30 4 1 * * /usr/local/bin/backup.sh` specifies that the script runs when the minute is 30, hour is 4, and day-of-month is 1, with the month and day-of-week fields set to `*` (meaning every month and every day of the week). This results in execution at 4:30 AM on the 1st day of every month, making option B correct.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Daily at 4:30 AM
Why it's wrong here
Daily would have '*' in the day-of-month field.
- ✓
Monthly at 4:30 AM on the 1st
Why this is correct
The '1' in the day-of-month field indicates the first day of each month.
- ✗
Yearly at 4:30 AM
Why it's wrong here
Yearly would require a specific month as well.
- ✗
Weekly at 4:30 AM
Why it's wrong here
Weekly uses day-of-week field, not day-of-month.
Go deeper
Related to this question
About these practice questions
This LPIC-1 question is part of Courseiva's 527-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This LPIC-1 practice question is part of Courseiva's free LPI certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the LPIC-1 exam.