SPLK-1002 — Splunk Core Certified Power User
Splunk

Splunk Core Certified Power User (SPLK-1002) Practice Questions

★★★★★★ 4.6 172 verified reviews
100 questions
June 13, 2026 updated
✓ Online quiz simulator

Domain coverage

  • Using Transforming Commands for Visualizations (5%)
  • Filtering and Formatting Results (10%)
  • Correlating Events (15%)
  • Creating and Managing Fields (10%)
  • Creating Field Aliases and Calculated Fields (10%)
  • Creating Tags and Event Types (10%)
  • Creating and Using Macros (10%)
  • Creating and Using Workflow Actions (10%)
  • Creating Data Models (10%)
  • Using the Common Information Model (CIM) Add-On (10%)

Sample Questions (10 of 100 shown)

Q1 Using Transforming Commands for Visualization (5%)
Which Splunk command is specifically designed to chart values over time without manually binning the timestamp field?
  1. stats
  2. chart
  3. timechart
  4. table
✓ Correct Answer: C
The timechart command automatically bins the internal _time field and generates series suitable for time-based visualizations. It is the go-to command when the x-axis should represent time.
Q2 Using Transforming Commands for Visualization (5%)
A user wants to count events by sourcetype to create a pie chart. Which command is most appropriate?
  1. timechart count by sourcetype
  2. chart count over sourcetype
  3. transaction sourcetype
  4. table sourcetype count
✓ Correct Answer: B
Pie charts require aggregation by a non-time field. chart count over sourcetype groups data by category and produces results suitable for Splunk visualizations.
Q3 Using Transforming Commands for Visualization (5%)
Which statement best distinguishes transforming commands from non-transforming commands in Splunk?
  1. Transforming commands replace raw events with statistical or tabular results
  2. Transforming commands can only run after timechart
  3. Non-transforming commands always run faster than transforming commands
  4. Transforming commands are used only for dashboards, not searches
✓ Correct Answer: A
Transforming commands change the result set from individual events to aggregated statistical information. Commands like stats, chart, and timechart are classic examples as they reshape data for reporting.
Q4 Using Transforming Commands for Visualization (5%)
Which search will produce a line chart of failed logins per hour broken down by host?
  1. index=auth action=failure | chart count over host by _time
  2. index=auth action=failure | stats count by _time host
  3. index=auth action=failure | timechart span=1h count by host
  4. index=auth action=failure | table _time host count
✓ Correct Answer: C
timechart span=1h count by host creates hourly time buckets and generates separate series for each host, which is exactly what a multi-line time visualization needs.
Q5 Using Transforming Commands for Visualization (5%)
A search should show the top five HTTP status codes sorted by event count. Which command is the most direct?
  1. top limit=5 status
  2. timechart count by status limit=5
  3. transaction status
  4. lookup status_codes.csv status
✓ Correct Answer: A
The top command is built to return the most frequent values of a field with counts and percentages. It is more direct than manually constructing the same output.
Q6 Filtering and Formatting Results (10%)
Which of the following is NOT a comparison operator in Splunk?
  1. <=
  2. =
  3. !=
  4. >
  5. ?=
✓ Correct Answer: E
Splunk supports comparison operators like <, >, =, !=, <=, >=, IN, and LIKE. The ?= operator is not valid in Splunk and would cause a syntax error.
Q7 Filtering and Formatting Results (10%)
What is the expected result of the search | where A=B?
  1. Events containing the string value where A=B
  2. Events containing the string value A=B
  3. Events where the value of field A equals the value of field B
  4. Events where field A contains the string value B
✓ Correct Answer: C
The where command filters results based on an expression that evaluates to true or false. | where A=B compares two fields without quotes — only events where both fields have the same value are returned.
Q8 Filtering and Formatting Results (10%)
Which eval command function is valid in Splunk?
  1. int()
  2. count()
  3. print()
  4. tostring()
✓ Correct Answer: D
tostring() is a valid eval function in Splunk that converts a field value to a string. count() is a stats function, while int() and print() are not standard Splunk eval functions.
Q9 Filtering and Formatting Results (10%)
What can the eval command do?
  1. Remove fields from results
  2. Create or replace an existing field value
  3. Group events into transactions by one or more fields
  4. Save an SPL command for reuse in other searches
✓ Correct Answer: B
The eval command evaluates an expression and puts the resulting value into a search-time field. It can create new fields or overwrite existing ones using expressions and functions.
Q10 Filtering and Formatting Results (10%)
If the data has fields with empty values, which command adds a value to replace null fields?
  1. | eval notNULL = "" | nullfill value=0 notNULL
  2. | eval notNULL = if(isnull(notNULL), "0")
  3. | eval notNULL = if(isnull(notNULL), "0"
  4. | eval notNULL = "" | fillnull value=0 notNULL
✓ Correct Answer: D
The fillnull command replaces null values in specified fields with a default value. The syntax | fillnull value=0 notNULL correctly fills null values in the notNULL field with 0.

You've viewed 3 of 100 questions. Start the free practice exam to answer all questions with instant feedback.

What Our Customers Say 172 verified reviews

4.6 ★★★★★★ Based on 172 reviews
★★★★★★
The SPLK-1002 questions were tougher than the actual exam, which honestly made me more confident. Great prep tool.
— Brandon L.
★★★★★★
Straightforward and effective. No fluff in the SPLK-1002 practice set, just relevant questions with solid answer keys.
— Owen P.
★★★★★★
Good bang for your buck on the SPLK-1002 practice exam. Unlimited attempts means you can really drill the material.
— Zoey L.
★★★★★★
Lifetime access was the selling point for me. Got sidetracked for a few months and came back — everything was still there for SPLK-1002.
— Layla S.
★★★★★★
Quick shipping? LOL jk — instant access was great. Started studying SPLK-1002 questions right after purchase, no delays.
— Colton W.
★★★★★★
Best SPLK-1002 prep I’ve found online. The question pool is deep and the randomized practice mode keeps you on your toes.
— Mason T.

Log in to rate this exam and leave a review.

Submitted for moderation before publishing. Keep it helpful and respectful.

Frequently Asked Questions

The choice between stats vs. transaction. The exam tests your ability to optimize search performance — default to stats whenever grouping data (it operates much faster on distributed search architectures) and use transaction only when raw event strings and consecutive timing dependencies are needed. Our practice questions include multiple scenario-based exercises comparing these two commands.

The search command looks for unquoted bare strings anywhere in your data and behaves like a base search bar filter. The where command strictly checks boolean evaluations, lets you compare two separate fields directly (e.g., where fieldA == fieldB), and is case-sensitive. This is a common pitfall that our practice materials address with dedicated drills.

Splunk calculates Field Aliases first in the knowledge object execution order, meaning you can use an alias inside a Calculated Field equation — but not the reverse. Understanding this execution order is critical for writing accurate field transformations. Our practice sets include ordering-based questions that mirror the real exam.

It is a lifetime certification with no expiration date. It serves as a critical prerequisite for advancing into expert roles such as Splunk Enterprise Certified Admin (SPLK-1003) or Splunk Core Certified Advanced Power User.

Our mock exam covers all 10 domains with the same weight distribution as the real test — from chart/timechart visualizations through transaction vs. stats correlation scenarios, eval and where filtering, Field Extractor (FX) parsing, search macros with parameters, and CIM Add-On normalization. Each question includes a detailed SPL-level explanation.

Yes. The downloadable PDF contains the same question bank as the online version, including answer explanations covering knowledge object execution order, transaction correlation parameters, search macro syntax, workflow action configuration, data model schema design, and CIM field normalization. It is designed for offline study without an internet connection.

Candidates frequently report Correlating Events (15%) as the toughest domain due to the nuanced transaction vs. stats performance trade-offs. Creating Data Models (10%) and Using the CIM Add-On (10%) are also cited as challenging because they require understanding of relational schema design and cross-vendor field standardization. Our practice questions include focused drills on these high-difficulty areas.

Free Study Resources

Community-verified analysis of 55 topics from real test-taker discussions — 9 deep analyses and 15 FAQs.