New Year Special Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: mxmas70

Home > Splunk > Splunk Core Certified Power User > SPLK-1002

SPLK-1002 Splunk Core Certified Power User Exam Question and Answers

Question # 4

Which of the following is the correct way to use the data model command to search field in the data model within the web dataset?

A.

| datamodel web search | filed web *

B.

| Search datamodel web web | filed web*

C.

| datamodel web web field | search web*

D.

Datamodel=web | search web | filed web*

Full Access
Question # 5

Which of the following statements about data models and pivot are true? (select all that apply)

A.

They are both knowledge objects.

B.

Data models are created out of datasets called pivots.

C.

Pivot requires users to input SPL searches on data models.

D.

Pivot allows the creation of data visualizations that present different aspects of a data model.

Full Access
Question # 6

Which delimiters can the Field Extractor (FX) detect? (select all that apply)

A.

Tabs

B.

Pipes

C.

Spaces

D.

Commas

Full Access
Question # 7

Data model fields can be added using the Auto-Extracted method. Which of the following statements describe Auto-Extracted fields? (select all that apply)

A.

Auto-Extracted fields can be hidden in Pivot.

B.

Auto-Extracted fields can have their data type changed.

C.

Auto-Extracted fields can be given a friendly name for use in Pivot.

D.

Auto-Extracted fields can be added if they already exist in the dataset with constraints.

Full Access
Question # 8

How does a user display a chart in stack mode?

A.

By using the stack command.

B.

By turning on the Use Trellis Layout option.

C.

By changing Stack Mode in the Format menu.

D.

You cannot display a chart in stack mode, only a timechart.

Full Access
Question # 9

Calculated fields can be based on which of the following?

A.

Tags

B.

Extracted fields

C.

Output fields for a lookup

D.

Fields generated from a search string

Full Access
Question # 10

Which of the following statements describe the search string below?

| datamodel Application_State All_Application_State search

A.

Evenrches would return a report of sales by state.

B.

Events will be returned from the data model named Application_State.

C.

Events will be returned from the data model named All_Application_state.

D.

No events will be returned because the pipe should occur after the datamodel command

Full Access
Question # 11

What is required for a macro to accept three arguments?

A.

The macro's name ends with (3).

B.

The macro's name starts with (3).

C.

The macro's argument count setting is 3 or more.

D.

Nothing, all macros can accept any number of arguments.

Full Access
Question # 12

What are the two parts of a root event dataset?

A.

Fields and variables.

B.

Fields and attributes.

C.

Constraints and fields.

D.

Constraints and lookups.

Full Access
Question # 13

Selected fields are displayed ______each event in the search results.

A.

below

B.

interesting fields

C.

other fields

D.

above

Full Access
Question # 14

Given the macro definition below, what should be entered into the Name and Arguments fileds to correctly configured the macro?

A.

The macro name is sessiontracker and the arguments are action, JESSIONID.

B.

The macro name is sessiontracker(2) and the arguments are action, JESSIONID.

C.

The macro name is sessiontracker and the arguments are $action$, $JESSIONID$.

D.

The macro name is sessiontracker(2) and the Arguments are $action$, $JESSIONID$.

Full Access
Question # 15

Which one of the following statements about the search command is true?

A.

It does not allow the use of wildcards.

B.

It treats field values in a case-sensitive manner.

C.

It can only be used at the beginning of the search pipeline.

D.

It behaves exactly like search strings before the first pipe.

Full Access
Question # 16

When multiple event types with different color values are assigned to the same event, what determines the color displayed for the events?

A.

Rank

B.

Weight

C.

Priority

D.

Precedence

Full Access
Question # 17

Which of the following knowledge objects represents the output of an eval expression?

A.

Eval fields

B.

Calculated fields

C.

Field extractions

D.

Calculated lookups

Full Access
Question # 18

Which of the following file formats can be extracted using a delimiter field extraction?

A.

CSV

B.

PDF

C.

XML

D.

JSON

Full Access
Question # 19

A field alias has been created based on an original field. A search without any transforming commands is then executed in Smart Mode. Which field name appears in the results?

A.

Both will appear in the All Fields list, but only if the alias is specified in the search.

B.

Both will appear in the Interesting Fields list, but only if they appear in at least 20 percent of events.

C.

The original field only appears in All Fields list and the alias only appears in the Interesting Fields list.

D.

The alias only appears in the All Fields list and the original field only appears in the Interesting Fields list.

Full Access
Question # 20

Which group of users would most likely use pivots?

A.

Users

B.

Architects

C.

Administrators

D.

Knowledge Managers

Full Access
Question # 21

Which of the following statements about tags is true?

A.

Tags are case insensitive.

B.

Tags are created at index time.

C.

Tags can make your data more understandable.

D.

Tags are searched by using the syntax tag: :

Full Access
Question # 22

Which of the following actions can the eval command perform?

A.

Remove fields from results.

B.

Create or replace an existing field.

C.

Group transactions by one or more fields.

D.

Save SPL commands to be reused in other searches.

Full Access
Question # 23

What is the correct syntax to search for a tag associated with a value on a specific fields?

A.

Tag-

B.

Tag

C.

Tag=::

D.

Tag::=

Full Access
Question # 24

Which of the following statements describes POST workflow actions?

A.

POST workflow actions are always encrypted.

B.

POST workflow actions cannot use field values in their URI.

C.

POST workflow actions cannot be created on custom sourcetypes.

D.

POST workflow actions can open a web page in either the same window or a new .

Full Access
Question # 25

Which of the following eval command function is valid?

A.

Int ()

B.

Count ( )

C.

Print ()

D.

Tostring ()

Full Access
Question # 26

What do events in a transaction have In common?

A.

All events In a transaction must have the same timestamp.

B.

All events in a transaction must have the same sourcetype.

C.

All events in a transaction must have the exact same set of fields.

D.

All events in a transaction must be related by one or more fields.

Full Access
Question # 27

In which of the following scenarios is an event type more effective than a saved search?

A.

When a search should always include the same time range.

B.

When a search needs to be added to other users' dashboards.

C.

When the search string needs to be used in future searches.

D.

When formatting needs to be included with the search string.

Full Access
Question # 28

Which of the following searches show a valid use of macro? (Select all that apply)

A.

index=main source=mySource oldField=* |'makeMyField(oldField)'| table _time newField

B.

index=main source=mySource oldField=* | stats if('makeMyField(oldField)') | table _time newField

C.

index=main source=mySource oldField=* | eval newField='makeMyField(oldField)'| table _time newField

D.

index=main source=mySource oldField=* | "'newField('makeMyField(oldField)')'" | table _time newField

Full Access
Question # 29

Based on the macro definition shown below, what is the correct way to execute the macro in a search string?

A.

Convert_sales (euro, €, 79)”

B.

Convert_sales (euro, €, .79)

C.

Convert_sales ($euro,$€$,s79$

D.

Convert_sales ($euro, $€$,S,79$)

Full Access
Question # 30

Which of the following describes the Splunk Common Information Model (CIM) add-on?

A.

The CIM add-on uses machine learning to normalize data.

B.

The CIM add-on contains dashboards that show how to map data.

C.

The CIM add-on contains data models to help you normalize data.

D.

The CIM add-on is automatically installed in a Splunk environment.

Full Access
Question # 31

Which of the following statements describe the Common Information Model (CIM)? (select all that apply)

A.

CIM is a methodology for normalizing data.

B.

CIM can correlate data from different sources.

C.

The Knowledge Manager uses the CIM to create knowledge objects.

D.

CIM is an app that can coexist with other apps on a single Splunk deployment.

Full Access
Question # 32

Which of the following statements describes Search workflow actions?

A.

By default. Search workflow actions will run as a real-time search.

B.

Search workflow actions can be configured as scheduled searches,

C.

The user can define the time range of the search when created the workflow action.

D.

Search workflow actions cannot be configured with a search string that includes the transaction command

Full Access
Question # 33

These users can create global knowledge objects. (Select all that apply.)

A.

users

B.

power users

C.

administrators

Full Access
Question # 34

How is a variable for a macro defined?

A.

Place the variable name inside of curly braces: {variable name}.

B.

Place the variable name inside of asterisks: variable name.

C.

Place the variable name inside of dollar signs: $variable name$.

D.

Place the variable name inside of percentage signs: %variable name%.

Full Access
Question # 35

Which of the following statements describe calculated fields? (select all that apply)

A.

Calculated fields can be used in the search bar.

B.

Calculated fields can be based on an extracted field.

C.

Calculated fields can only be applied to host and sourcetype.

D.

Calculated fields are shortcuts for performing calculations using the eval command.

Full Access
Question # 36

Which of the following Statements about macros is true? (select all that apply)

A.

Arguments are defined at execution time.

B.

Arguments are defined when the macro is created.

C.

Argument values are used to resolve the search string at execution time.

D.

Argument values are used to resolve the search string when the macro is created.

Full Access
Question # 37

Which of the following statements describe data model acceleration? (select all that apply)

A.

Root events cannot be accelerated.

B.

Accelerated data models cannot be edited.

C.

Private data models cannot be accelerated.

D.

You must have administrative permissions or the accelerate_dacamodel capability to accelerate a data model.

Full Access
Question # 38

What functionality does the Splunk Common Information Model (CIM) rely on to normalize fields with different names?

A.

Macros.

B.

Field aliases.

C.

The rename command.

D.

CIM does not work with different names for the same field.

Full Access
Question # 39

A user wants to convert numeric field values to strings and also to sort on those values.

Which command should be used first, the eval or the sort?

A.

It doesn't matter whether eval or sort is used first.

B.

Convert the numeric to a string with eval first, then sort.

C.

Use sort first, then convert the numeric to a string with eval.

D.

You cannot use the sort command and the eval command on the same field.

Full Access
Question # 40

The Field Extractor (FX) is used to extract a custom field. A report can be created using this custom field. The created report can then be shared with other people in the organization. If another person in the organization runs the shared report and no results are returned, why might this be? (select all that apply)

A.

Fast mode is enabled.

B.

The dashboard is private.

C.

The extraction is private-

D.

The person in the organization running the report does not have access to the index.

Full Access
Question # 41

What does the Splunk Common Information Model (CIM) add-on include? (select all that apply)

A.

Custom visualizations

B.

Pre-configured data models

C.

Fields and event category tags

D.

Automatic data model acceleration

Full Access
Question # 42

After manually editing; a regular expression (regex), which of the following statements is true?

A.

Changes made manually can be reverted in the Field Extractor (FX) UI.

B.

It is no longer possible to edit the field extraction in the Field Extractor (FX) UI.

C.

It is not possible to manually edit a regular expression (regex) that was created using the Field Extractor (FX) UI.

D.

The Field Extractor (FX) UI keeps its own version of the field extraction in addition to the one that was manually edited.

Full Access
Question # 43

Which of the following statements describes this search?

sourcetype=access_combined I transaction JSESSIONID | timechart avg (duration)

A.

This is a valid search and will display a timechart of the average duration, of each transaction event.

B.

This is a valid search and will display a stats table showing the maximum pause among transactions.

C.

No results will be returned because the transaction command must include the startswith and endswith options.

D.

No results will be returned because the transaction command must be the last command used in the search pipeline.

Full Access
Question # 44

What field must be present in order to use the timechart command?

A.

_raw

B.

rime

C.

_time

D.

index

Full Access
Question # 45

Use the dedup command to _____.

A.

Rename a field in the index

B.

remove duplicate values

C.

provide an additional alias for the field that can D.be used in the search criteria

Full Access
Question # 46

How is an event type created from the search window? (select all that apply)

A.

In the top right corner, click Save As > Event Type.

B.

In an event's detail dropdown, click Event Actions > Build Event Type.

C.

Edit eventtypes.conf and add a new stanza.

D.

Add | eventtype to the SPL and execute the search.

Full Access
Question # 47

For the following search, which command would further filter for only IP addresses present more than five times?

A.

index=games I stats count as IP_count by IP B. | where IP_count > 5

B.

index=games | search IP_Count > 5

C.

index=games | where IP > 5

D.

index=games I search IP > 5

Full Access
Question # 48

Which of the following statements describes the use of the Filed Extractor (FX)?

A.

The Field Extractor automatically extracts all field at search time.

B.

The Field Extractor uses PERL to extract field from the raw events.

C.

Field extracted using the Extracted persist as knowledge objects.

D.

Fields extracted using the Field Extractor do not persist and must be defined for each search.

Full Access
Question # 49

Which of the following commands will show the maximum bytes?

A.

sourcetype=access_* | maximum totals by bytes

B.

sourcetype=access_* | avg (bytes)

C.

sourcetype=access_* | stats max(bytes)

D.

sourcetype=access_* | max(bytes)

Full Access
Question # 50

What does the following search do?

A.

Creates a table of the total count of users and split by corndogs.

B.

Creates a table of the total count of mysterymeat corndogs split by user.

C.

Creates a table with the count of all types of corndogs eaten split by user.

D.

Creates a table that groups the total number of users by vegetarian corndogs.

Full Access
Question # 51

What does the fillnull command replace null values with, it the value argument is not specified?

A.

0

B.

N/A

C.

NaN

D.

NULL

Full Access
Question # 52

How are event types different from saved reports?

A.

Event types cannot be used to organize data into categories.

B.

Event types include formatting of the search results.

C.

Event types can be shared with Splunk users and added to dashboards.

D.

Event types do not include a time range.

Full Access
Question # 53

Highlighted search terms indicate _________ search results in Splunk.

A.

Display as selected fields.

B.

Sorted

C.

Charted based on time

D.

Matching

Full Access
Question # 54

How many ways are there to access the Field Extractor Utility?

A.

3

B.

4

C.

1

D.

5

Full Access
Question # 55

Which of the following is true about a datamodel that has been accelerated?

A.

They can be used with Pivot, the | tstats command, or the | datamodel command.

B.

They can still be used in the Pivot tool but only with the accelerate_pivot capability.

C.

They can no longer be used in the Pivot tool.

D.

They can be used with the |tstats command, but will only return that data which has been accelerated.

Full Access
Question # 56

A data model consists of which three types of datasets?

A.

Constraint, field, value.

B.

Events, searches, transactions.

C.

Field extraction, regex, delimited.

D.

Transaction, session ID, metadata.

Full Access
Question # 57

A user runs the following search:

index—X sourcetype=Y I chart count (domain) as count, sum (price) as sum by product, action usenull=f useother—f

Which of the following table headers match the order this command creates?

A.

The chart command does not allow for multiple statistical functions.

B.

Product, sum: addtocart, sum: remove, sum: purchase, count: addtocart, count: remove, count: purchase

C.

Product, count: addtocart, count: remove, count: purchase, sum: addtocart, sum: remove, sum: purchase

D.

Count: product, sum: product, count: action, sum: action

Full Access
Question # 58

These allow you to categorize events based on search terms.

Select your answer.

A.

Groups

B.

Event Types

C.

Macros

D.

Tags

Full Access
Question # 59

When you mouse over and click to add a search term this (thesE. Boolean operator(s) is(arE. not implied. (Select all that apply).

A.

OR

B.

( )

C.

AND

D.

NOT

Full Access
Question # 60

When defining a macro, what are the required elements?

A.

Name and arguments.

B.

Name and a validation error message.

C.

Name and definition.

D.

Definition and arguments.

Full Access
Question # 61

Which workflow action method can be used the action type is set to link?

A.

GET

B.

PUT

C.

Search

D.

UPDATE

Full Access
Question # 62

Which of the following statements describes calculated fields?

A.

Calculated fields are only used on fields added by lookups.

B.

Calculated fields are a shortcut for repetitive and complex eval commands.

C.

Calculated fields are a shortcut for repetitive and complex calc commands.

D.

Calculated fields automatically calculate the simple moving average for indexed fields.

Full Access
Question # 63

Which of the following expressions could be used to create a calculated field called gigabytes?

A.

eval sc_bytes(1024/1024)

B.

| eval negabytes=sc_bytes(1024/1024)

C.

megabytes=sc_bytes(1024/1024)

D.

sc_bytas(1024/1024)

Full Access
Question # 64

When does the CIM add-on apply preconfigured data models to the data?

A.

Search time

B.

Index time

C.

On a cron schedule

D.

At midnight

Full Access
Question # 65

Which of the following is a function of the Splunk Common Information Model (CIM)?

A.

Normalizing data across a Splunk deployment.

B.

Providing templates for reports and dashboards.

C.

Algorithmically shifting events to other indexes.

D.

Reingesting previously indexed data with new field names.

Full Access
Question # 66

When using multiple expressions in a single eval command, which delimiter is used?

A.

, (comma)

B.

I (pipe)

C.

/ (forward slash)

D.

: (colon)

Full Access
Question # 67

The eval command 'if' function requires the following three arguments (in order):

A.

Boolean expression, result if true, result if false

B.

Result if true, result if false, boolean expression

C.

Result if false, result if true, boolean expression

D.

Boolean expression, result if false, result if true

Full Access
Question # 68

What are search macros?

A.

Lookup definitions in lookup tables.

B.

Reusable pieces of search processing language.

C.

A method to normalize fields.

D.

Categories of search results.

Full Access
Question # 69

For choropleth maps,splunk ships with the following KMZ files (select all that apply)

A.

States of the United States

B.

States and provinces of the united states and Canada

C.

Countries of the European Union

D.

Countries of the World

Full Access
Question # 70

How can an existing accelerated data model be edited?

A.

An accelerated data model can be edited once its .tsidx file has expired.

B.

An accelerated data model can be edited from the Pivot tool.

C.

The data model must be de-accelerated before edits can be made to its structure.

D.

It cannot be edited. A new data model would need to be created.

Full Access
Question # 71

In this search, __________ will appear on the y-axis. SEARCH: sourcetype=access_combined status!=200 | chart count over host

A.

status

B.

host

C.

count

Full Access
Question # 72

What is the correct way to name a macro with two arguments?

A.

us_sales2

B.

us_sales(1,2)

C.

us_sale,2

D.

us_sales(2)

Full Access
Question # 73

Which of the following statements describes POST workflow actions?

A.

Configuration of a POST workflow action includes choosing a sourcetype.

B.

POST workflow actions can be configured to send email to the URI location.

C.

By default, POST workflow action are shown in both the event and field menus.

D.

POST workflow actions can be configured to send POST arguments to the URI location.

Full Access
Question # 74

Which knowledge object is used to normalize field names to comply with the Splunk Common Information Model (CIM)?

A.

Field alias

B.

Event types

C.

Search workflow action

D.

Tags

Full Access
Question # 75

Which of the following transforming commands can be used with transactions?

A.

chart, timechart, stats, eventstats

B.

chart, timechart, stats, diff

C.

chart, timeehart, datamodel, pivot

D.

chart, timecha:t, stats, pivot

Full Access
Question # 76

When creating a data model, which root dataset requires at least one constraint?

A.

Root transaction dataset

B.

Root event dataset

C.

Root child dataset

D.

Root search dataset

Full Access
Question # 77

During the validation step of the Field Extractor workflow:

Select your answer.

A.

You can remove values that aren't a match for the field you want to define

B.

You can validate where the data originated from

C.

You cannot modify the field extraction

Full Access
Question # 78

In the Field Extractor Utility, this button will display events that do not contain extracted fields.

Select your answer.

A.

Selected-Fields

B.

Non-Matches

C.

Non-Extractions

D.

Matches

Full Access
Question # 79

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?

A.

Three

B.

Eight

C.

Five

D.

Zero

Full Access
Question # 80

Which of the following search modes automatically returns all extracted fields in the fields sidebar?

A.

Fast

B.

Smart 

C.

C. Verbose

Full Access
Question # 81

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?

A.

... | fillnull values=(0,"NO-VALUE") fields=(field1,field2)

B.

There is no equivalent expression using fillnull

C.

... | fillnull field1 | fillnull value="NO-VALUE" field2

D.

... | fillnull value=0 field1 | fillnull field2

Full Access
Question # 82

The Splunk Common Information Model (CIM) is a collection of what type of knowledge object?

A.

KV Store

B.

Lookups

C.

Saved searches

D.

Data models

Full Access
Question # 83

When creating an event type, which is allowed in the search string?

A.

Tags

B.

Joins

C.

Subsearches

D.

Pipes

Full Access
Question # 84

Which statement is true?

A.

Pivot is used for creating datasets.

B.

Data model are randomly structured datasets.

C.

Pivot is used for creating reports and dashboards.

D.

In most cases, each Splunk user will create their own data model.

Full Access
Question # 85

How are arguments defined within the macro search string?

A.

Åžarg$

B.

'arg'

C.

%arg%

D.

"arg"

Full Access
Question # 86

In which Settings section are macros defined?

A.

Fields

B.

Tokens

C.

Advanced Search

D.

Searches, Reports, Alerts

Full Access
Question # 87

How is a macro referenced in a search?

A.

By using the macroname command.

B.

By using the macro command.

C.

By enclosing the macro name in backtick characters (‘).

D.

By enclosing the macro name in single-quote characters (‘).

Full Access