- A
OnCalendar=Mon *-*-* 15:00:00
Correct syntax for Monday at 3 PM.
- B
OnCalendar=weekly Monday 15:00
Why wrong: Invalid format for OnCalendar.
- C
ExecStart=/usr/local/bin/script.sh
Why wrong: This belongs in the service unit, not timer.
- D
OnCalendar=daily 15:00
Why wrong: Runs daily, not just Mondays.
Quick Answer
The correct OnCalendar format for Monday at 15:00 is `Mon *-*-* 15:00:00`. This works because systemd timer units use a calendar event syntax that combines a day-of-week abbreviation with a date-time wildcard pattern, where the asterisks act as placeholders for any year, month, and day, ensuring the timer fires every Monday at exactly 3:00 PM regardless of the date. On the CompTIA Linux+ XK0-005 exam, this tests your ability to distinguish the correct `OnCalendar=` directive from common traps like omitting the asterisks, using a comma-separated list, or misplacing the time before the day. A frequent mistake is writing `Mon 15:00:00` without the wildcard segment, which systemd would reject as invalid. To remember the order, think of it as reading a calendar: first the day of the week, then the date wildcards (year-month-day), then the time—like saying “Monday, any date, at 3 PM sharp.”
XK0-005 Scripting, Containers and Automation Practice Question
This XK0-005 practice question tests your understanding of scripting, containers and automation. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
An administrator wants to run a script every Monday at 3:00 PM using a systemd timer. Which unit file configuration is correct for the timer?
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
OnCalendar=Mon *-*-* 15:00:00
Option A is correct because systemd timer units use the `OnCalendar=` directive with a calendar event format that follows `DayOfWeek Year-Month-Day Hour:Minute:Second`. The pattern `Mon *-*-* 15:00:00` specifies every Monday at 15:00:00, where the asterisks act as wildcards for any year, month, and day. This matches the requirement to run a script every Monday at 3:00 PM.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
OnCalendar=Mon *-*-* 15:00:00
Why this is correct
Correct syntax for Monday at 3 PM.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
OnCalendar=weekly Monday 15:00
Why it's wrong here
Invalid format for OnCalendar.
- ✗
ExecStart=/usr/local/bin/script.sh
Why it's wrong here
This belongs in the service unit, not timer.
- ✗
OnCalendar=daily 15:00
Why it's wrong here
Runs daily, not just Mondays.
Common exam traps
Common exam trap: answer the scenario, not the keyword
CompTIA often tests the distinction between timer unit directives and service unit directives, and the trap here is that candidates mistakenly think `ExecStart=` belongs in the timer file or confuse the `OnCalendar=` syntax with cron-style or human-readable formats like 'weekly Monday 15:00'.
Detailed technical explanation
How to think about this question
Systemd timer units use the `OnCalendar=` directive with a format derived from the `systemd.time` man page, which supports expressions like `Mon *-*-* 15:00:00` where the day-of-week field is validated against locale-specific abbreviations. Under the hood, systemd parses this into a `usec` timestamp using the `sd_event_add_time` API, and the timer fires at the next matching instant, handling edge cases like DST transitions by using monotonic time adjustments. In real-world scenarios, administrators often pair a timer unit with a service unit of the same base name (e.g., `script.timer` and `script.service`), where the service unit contains the `ExecStart=` directive.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A small business has 20 workstations on the 192.168.1.0/24 network and one public IP from its ISP. The router uses PAT (NAT overload) so all 20 devices share one public address using different source ports. NAT questions test whether you understand the four address terms and which direction each translation applies.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Scripting, Containers and Automation — study guide chapter
Learn the concepts, then practise the questions
- →
Scripting, Containers and Automation practice questions
Targeted practice on this topic area only
- →
All XK0-005 questions
510 questions across all exam domains
- →
CompTIA Linux+ XK0-005 study guide
Full concept coverage aligned to exam objectives
- →
XK0-005 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related XK0-005 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Security practice questions
Practise XK0-005 questions linked to Security.
Troubleshooting practice questions
Practise XK0-005 questions linked to Troubleshooting.
Scripting, Containers and Automation practice questions
Practise XK0-005 questions linked to Scripting, Containers and Automation.
System Management practice questions
Practise XK0-005 questions linked to System Management.
XK0-005 fundamentals practice questions
Practise XK0-005 questions linked to XK0-005 fundamentals.
XK0-005 scenario practice questions
Practise XK0-005 questions linked to XK0-005 scenario.
XK0-005 troubleshooting practice questions
Practise XK0-005 questions linked to XK0-005 troubleshooting.
Practice this exam
Start a free XK0-005 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this XK0-005 question test?
Scripting, Containers and Automation — This question tests Scripting, Containers and Automation — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: OnCalendar=Mon *-*-* 15:00:00 — Option A is correct because systemd timer units use the `OnCalendar=` directive with a calendar event format that follows `DayOfWeek Year-Month-Day Hour:Minute:Second`. The pattern `Mon *-*-* 15:00:00` specifies every Monday at 15:00:00, where the asterisks act as wildcards for any year, month, and day. This matches the requirement to run a script every Monday at 3:00 PM.
What should I do if I get this XK0-005 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 30, 2026
This XK0-005 practice question is part of Courseiva's free CompTIA 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 XK0-005 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.