Courseiva
Creating Reports, Dashboards and VisualizationsmediumMultiple ChoiceObjective-mapped

SPLK-1001 Practice Question: Creating Reports, Dashboards and Visualizations

Exhibit

| inputlookup app_errors.csv
| search error_code=* AND severity="high"
| table app_name, error_code, count
| sort - count
| head 10

Refer to the exhibit. A Splunk user runs this search against a lookup file containing application error data. The search returns fewer than 10 results. Which is the most likely reason?

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

The search filter 'severity="high"' is too restrictive, resulting in fewer than 10 matching rows.

The search filters for severity='high', which may be a small subset. The head command limits to 10, but if fewer than 10 match, that's all that's returned.

Answer analysis

Option-by-option breakdown

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

  • The inputlookup command only returns the first 10 rows by default.

    Why it's wrong here

    inputlookup returns all rows unless filtered.

  • The lookup file contains more than 10 rows.

    Why it's wrong here

    Not necessarily; the filter reduces results.

  • The search filter 'severity="high"' is too restrictive, resulting in fewer than 10 matching rows.

    Why this is correct

    Correct. The filter limits results, so head returns all matches.

  • The table command limits the number of results.

    Why it's wrong here

    Table only selects fields, not rows.

About these practice questions

This SPLK-1001 question is part of Courseiva's 502-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 SPLK-1001 practice question is part of Courseiva's free Splunk 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 SPLK-1001 exam.