Courseiva
System ManagementmediumMultiple ChoiceObjective-mapped

XK0-006 System Management Practice Question

A system administrator wants to find all files in /var/log that have been modified in the last 7 days and are larger than 100MB. Which command should be used?

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

find /var/log -mtime -7 -size +100M

The -mtime -7 finds files modified within 7 days, -size +100M finds files larger than 100MB.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • find /var/log -mtime +7 -size +100M

    Why it's wrong here

    Finds files modified more than 7 days ago.

  • find /var/log -atime -7 -size +100M

    Why it's wrong here

    Uses access time (-atime) instead of modification time.

  • find /var/log -mtime -7 -size +100M

    Why this is correct

    Correct: -mtime -7 for last 7 days, -size +100M for >100MB.

  • find /var/log -mtime -7 -size -100M

    Why it's wrong here

    Finds files smaller than 100MB.

About these practice questions

This XK0-006 question is part of Courseiva's 979-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 →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This XK0-006 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-006 exam.