SPLK-1002 Splunk Core Certified Power User Exam Questions and Answers
Which of the following search modes automatically returns all extracted fields in the fields sidebar?
Which of the following file formats can be extracted using a delimiter field extraction?
Information needed to create a GET workflow action includes which of the following? (select all that apply.)
Which search string would only return results for an event type called success ful_purchases?
Which knowledge Object does the Splunk Common Information Model (CIM) use to normalize data. in addition to field aliases, event types, and tags?
The transaction command allows you to __________ events across multiple sources
Which tool uses data models to generate reports and dashboard panels without using SPL?
What does the fillnull command do in this search?
index=main sourcetype=http:log | fillnull value= " Unknown " src
Given the event below, how can the value in the Zip_Code field be used to retrieve the local weather from an external resource?
25/Oct/2023:20:29:43 , 151.131.173.143 , V2.003 , Zip_Code: 75890 , DataCenter: DC1
When using the Field Extractor (FX) to perform a field extraction, which delimiter can be used?
For the following search, which command would further filter for only IP addresses present more than five times?
Sally created several tags for employees of Buttercup Games. She tagged each employee’s badge number with the department name and location. Which search query would Sally use to filter for employees of the Marketing department who do not work in the San_Francisco office?
In the Field Extractor Utility, this button will display events that do not contain extracted fields.
Select your answer.
Which of the following statements describes the command below (select all that apply)
Sourcetype=access_combined | transaction JSESSIONID
Which of the following options should a user add to a search to limit transactions to a five minute time window?
Which of the following statements is true about the root dataset of a data model?
The eval command allows you to do which of the following? (Choose all that apply.)
Two separate results tables are being combined using the join command. The outer table has the following values:
The inner table has the following values:

The line of SPL used to join the tables is: join employeeNumber type=outer
How many rows are returned in the new table?
These kinds of charts represent a series in a single bar with multiple sections
Which of the following data models are included in the Splunk Common Information Model (CIM) add-on? (select all that apply)
To identify all of the contributing events within a transaction that contains at least one REJECT event, which syntax is correct?
What does the fillnull command replace null values with, it the value argument is not specified?
Given the following eval statement:
... | eval field1 = if(isnotnull(field1),field1,0), field2 = if(isnull(field2), " NO-VALUE " , field2)
Which of the following is the equivalent using fillnull?
Which of the following statements describe data model acceleration? (select all that apply)
Which of the following searches show a valid use of a macro? (Choose all that apply.)
In the following eval statement, what is the value of description if the status is 503? index=main | eval description=case(status==200, " OK " , status==404, " Not found " , status==500, " Internal Server Error " )
Which field will be used to populate the field if the productName and product:d fields have values for a given event?
| eval productINFO=coalesco(productName,productid)
Which of the following searches would return a report of sales by product-name?
How could the following syntax for the chart command be rewritten to remove the OTHER category? (select all that apply)

Which of the following definitions describes a macro named " samplemacro " that accepts two arguments?
Which of the following Statements about macros is true? (select all that apply)
What approach is recommended when using the Splunk Common Information Model (CIM) add-on to normalize data?
In which of the following scenarios is an event type more effective than a saved search?
A calculated field is a shortcut for performing repetitive, long, or complex transformations using which of the following commands?
In this search, __________ will appear on the y-axis. SEARCH: sourcetype=access_combined status!=200 | chart count over host
Which of the following statements would help a user choose between the transaction and stats commands?
When performing a regular expression (regex) field extraction using the Field Extractor (FX), what happens when the require option is used?
Where are the descriptions of the data models that come with the Splunk Common Information Model (CIM) Add-on documented?
The Common Information Model (CIM) Add-on contains a collection of what preconfigured knowledge objects?
What other syntax will produce exactly the same results as | chart count over vendor_action by user?
Which of the following searches will return events contains a tag name Privileged?
Given the macro definition below, what should be entered into the Name and Arguments fileds to correctly configured the macro?


