Black Friday Biggest Discount Flat 70% Offer - Ends in 0d 00h 00m 00s - Coupon code: 70diswrap

Splunk SPLK-1002 Dumps

Page: 1 / 29
Total 286 questions

Splunk Core Certified Power User Exam Questions and Answers

Question 1

Which of the following about reports is/are true?

Options:

A.

Reports are knowledge objects.

B.

Reports can be scheduled.

C.

Reports can run a script.

D.

All of the above.

Question 2

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

Options:

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

Question 3

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?

Options:

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

Question 4

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

Options:

A.

users

B.

power users

C.

administrators

Question 5

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

Options:

A.

_raw

B.

rime

C.

_time

D.

index

Question 6

The stats command will create a _____________ by default.

Options:

A.

Table

B.

Report

C.

Pie chart

Question 7

What information must be included when using the datamodel command?

Options:

A.

status field

B.

Multiple indexes

C.

Data model field name.

D.

Data model dataset name.

Question 8

Which of the following definitions describes a macro named "samplemacro" that accepts two arguments?

Options:

A.

Examplemacro [1,2]

B.

samplemacro(1,2)

C.

u amp -CJEUCXG (2)

D.

samplemacro[2]

Question 9

Using the Field Extractor (FX) tool, a value is highlighted to extract and give a name to a new field. Splunk has not successfully extracted that value from all appropriate events. What steps can be taken so Splunk successfully extracts the value from all appropriate events? (select all that apply)

Options:

A.

Select an additional sample event with the Field Extractor (FX) and highlight the missing value in the event.

B.

Re-ingest the data and attempt to extract from a new dataset.

C.

Click on the event where the field was not extracted and choose “Change to Delimited".

D.

Edit the regular expression manually.

Question 10

Which statement is true?

Options:

A.

Pivot is used for creating datasets.

B.

Data models 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.

Question 11

which of the following commands are used when creating visualizations(select all that apply.)

Options:

A.

Geom

B.

Choropleth

C.

Geostats

D.

iplocation

Question 12

Which of the following statements about tags is true? (select all that apply.)

Options:

A.

Tags are case-insensitive.

B.

Tags are based on field/vale pairs.

C.

Tags categorize events based on a search.

D.

Tags are designed to make data more understandable.

Question 13

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

Options:

A.

0

B.

N/A

C.

NaN

D.

NULL

Question 14

Which of the following commands connects an additional table of data directly to the right side of the existing table?

Options:

A.

subsearch

B.

update

C.

appendcols

D.

append

Question 15

What is the correct Boolean order of evaluation for the where command from first to last?

Options:

A.

NOT, Parentheses, OR, AND

B.

AND, Parentheses, NOT, OR

C.

Parentheses, NOT, AND, OR

D.

Parentheses, NOT, OR, AND

Question 16

Tags can reference which of the following knowledge objects?

Options:

A.

Lookups and event types only.

B.

Extracted fields, field aliases, calculated fields, lookups, and event types.

C.

Tags cannot reference any of these knowledge objects because tags are the last knowledge objects generated in the search-time operation sequence.

D.

Extracted fields, calculated fields, and field aliases only.

Question 17

Two separate results tables are being combined using the |join command. The outer table has the following values:

Refer to following Tables

as

The line of SPL used to join the tables is: | join employeeNumber type=outer

How many rows are returned in the new table?

Options:

A.

Zero

B.

Five

C.

Eight

D.

Three

Question 18

Which of the following describes the I transaction command?

Options:

A.

It is an SPL command that groups at least two events together based on shared values in selected fields.

B.

It allows an exchange of data from one Splunk index to another Splunk index.

C.

It is an SPL command that groups events together with shared values in selected fields.

D.

It allows an exchange of data from one Splunk system to another Splunk system.

Question 19

Which of the following can be saved as an event type?

Options:

A.

index-server_472 sourcetype-BETA_494 code-488 I stats count by code

B.

index=server_472 sourcetype=BETA_494 code=488 [I inputlookup append=t servercode.csv]

C.

index=server_472 sourcetype=BETA_494 code=488 I stats where code > 200

D.

index=server_472 sourcetype=BETA_494 code-488

Question 20

When extracting fields, we may choose to use our own regular expressions

Options:

A.

True

B.

False

Question 21

Which of the following search control will not re-rerun the search? (Select all that apply.)

Options:

A.

zoom out

B.

selecting a bar on the timeline

C.

deselect

D.

selecting a range of bars on the timelines

Question 22

Where are the descriptions of the data models that come with the Splunk Common Information Model (CIM) Add-on documented?

Options:

A.

Datamodel command reference guide.

B.

Pivot users manual.

C.

Search and reporting user manual.

D.

CIM Add-on manual.

Question 23

If a search returns ____________ it can be viewed as a chart.

Options:

A.

timestamps

B.

statistics

C.

events

D.

keywords

Question 24

Which of the following eval command functions is valid?

Options:

A.

int()

B.

count()

C.

print()

D.

tostring()

Question 25

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

Options:

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.

Question 26

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

Options:

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

Question 27

The fields sidebar does not show________. (Select all that apply.)

Options:

A.

interesting fields

B.

selected fields

C.

all extracted fields

Question 28

This function of the stats command allows you to return the middle-most value of field X.

Options:

A.

Median(X)

B.

Eval by X

C.

Fields(X)

D.

Values(X)

Question 29

What type of command is eval?

Options:

A.

Streaming in some modes

B.

Report generating

C.

Distributable streaming

D.

Centralized streaming

Question 30

When using transaction, what is the default maximum span between events?

Options:

A.

Unlimited

B.

1h

C.

1m

D.

1d

Question 31

Field aliases are used to __________ data

Options:

A.

clean

B.

transform

C.

calculate

D.

normalize

Question 32

What is the correct format for naming a macro with multiple arguments?

Options:

A.

monthly_sales(argument 1, argument 2, argument 3)

B.

monthly_sales(3)

C.

monthly_sales[3]

D.

monthly_sales[argument 1, argument 2, argument 3)

Question 33

Which of the following statements would help a user choose between the transaction and stats commands?

Options:

A.

state can only group events using IP addresses.

B.

The transaction command is faster and more efficient.

C.

There is a 1000 event limitation with the transaction command.

D.

Use state when the events need to be viewed as a single event.

Question 34

Which of the following eval commands will provide a new value for host from src if it exists?

Options:

A.

| eval host = if (isnu11 (src), src, host)

B.

| eval host = if (NOT src = host, src, host)

C.

| eval host = if (src = host, src, host)

D.

| eval host = if (isnotnull (src), src, host)

Question 35

When performing a regex field extraction with the Field Extractor (FX), a data type must be chosen before a sample event can be selected. Which of the following data types are supported?

Options:

A.

index or source

B.

sourcetype or host

C.

index or sourcetype

D.

sourcetype or source

Question 36

The limit attribute will___________.

Options:

A.

override default of 10

B.

only work with top command

C.

override default of 20

D.

override default of 15

Question 37

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

Options:

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.

Question 38

By default search results are not returned in ________ order.

Options:

A.

Chronological

B.

Reverser chronological

C.

ASCIE

D.

Alphabetical

Question 39

Which knowledge Object does the Splunk Common Information Model (CIM) use to normalize data. in addition to field aliases, event types, and tags?

Options:

A.

Macros

B.

Lookups

C.

Workflow actions

D.

Field extractions

Question 40

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

Options:

A.

OR

B.

( )

C.

AND

D.

NOT

Question 41

What is a benefit of installing the Splunk Common Information Model (CIM) add-on? A. It permits users to create workflow actions to align with industry standards.

B. It provides users with a standardized set of field names and tags to normalize data.

C. It allows users to create 3-D models of their data and export these visualizations.

D. It enables users to itemize their events based on the results of the Search Job Inspector.

Options:

Question 42

Which of the following searches will return events containing a tag named Privileged?

Options:

A.

tag=Priv

B.

tag=Priv*

C.

tag=priv*

D.

tag=privileged

Question 43

When using the timechart command, how can a user group the events into buckets based on time?

Options:

A.

Using the span argument.

B.

Using the duration argument.

C.

Using the interval argument.

D.

Adjusting the fieldformat options.

Question 44

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

Options:

A.

Tabs

B.

Pipes

C.

Spaces

D.

Commas

Question 45

Which group of users would most likely use pivots?

Options:

A.

Users

B.

Architects

C.

Administrators

D.

Knowledge Managers

Question 46

Which of the following statements describe the search below? (select all that apply)

Index=main I transaction clientip host maxspan=30s maxpause=5s

Options:

A.

Events in the transaction occurred within 5 seconds.

B.

It groups events that share the same clientip and host.

C.

The first and last events are no more than 5 seconds apart.

D.

The first and last events are no more than 30 seconds apart.

Question 47

Selected fields are displayed ______each event in the search results.

Options:

A.

below

B.

interesting fields

C.

other fields

D.

above

Question 48

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

Options:

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.

Question 49

Which of the following statements describes field aliases?

Options:

A.

Field alias names replace the original field name.

B.

Field aliases can be used in lookup file definitions.

C.

Field aliases only normalize data across sources and sourcetypes.

D.

Field alias names are not case sensitive when used as part of a search.

Question 50

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

Options:

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.

Question 51

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

as

Options:

A.

Convert_sales (euro, €, 79)”

B.

Convert_sales (euro, €, .79)

C.

Convert_sales ($euro,$€$,s79$

D.

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

Question 52

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

Options:

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.

Question 53

Which of the following statements about tags is true?

Options:

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: :

Question 54

Which of the following statements describes this search?

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

Options:

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.

Question 55

When using the Field Extractor (FX), which of the following delimiters will work? (select all that apply)

Options:

A.

Tabs

B.

Pipes

C.

Colons

D.

Spaces

Question 56

How does a user display a chart in stack mode?

Options:

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.

Question 57

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

Options:

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.

Question 58

When performing a regular expression (regex) field extraction using the Field Extractor (FX), what happens when the require option is used?

Options:

A.

The regex can no longer be edited.

B.

The field being extracted will be required for all future events.

C.

The events without the required field will not display in searches.

D.

Only events with the required string will be included in the extraction.

Question 59

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

Options:

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.

Question 60

A space is an implied _____ in a search string.

Options:

A.

OR

B.

AND

C.

()

D.

NOT

Question 61

Which are valid ways to create an event type? (select all that apply)

Options:

A.

By using the searchtypes command in the search bar.

B.

By editing the event_type stanza in the props.conf file.

C.

By going to the Settings menu and clicking Event Types > New.

D.

By selecting an event in search results and clicking Event Actions > Build Event Type.

Question 62

Which of the following eval command function is valid?

Options:

A.

Int ()

B.

Count ( )

C.

Print ()

D.

Tostring ()

Question 63

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

Options:

A.

0

B.

N/A

C.

NaN

D.

NULL

Question 64

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?

Options:

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.

Question 65

When creating a Search workflow action, which field is required?

Options:

A.

Search string

B.

Data model name

C.

Permission setting

D.

An eval statement

Question 66

What is required for a macro to accept three arguments?

Options:

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.

Question 67

Which of the following statements describes macros?

Options:

A.

A macro is a reusable search string that must contain the full search.

B.

A macro is a reusable search string that must have a fixed time range.

C.

A macro Is a reusable search string that may have a flexible time range.

D.

A macro Is a reusable search string that must contain only a portion of the search.

Question 68

Which of the following actions can the eval command perform?

Options:

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.

Question 69

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)

Options:

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.

Question 70

In what order arc the following knowledge objects/configurations applied?

Options:

A.

Field Aliases, Field Extractions, Lookups

B.

Field Extractions, Field Aliases, Lookups

C.

Field Extractions, Lookups, Field Aliases

D.

Lookups, Field Aliases, Field Extractions

Question 71

A calculated field maybe based on which of the following?

Options:

A.

Lookup tables

B.

Extracted fields

C.

Regular expressions

D.

Fields generated within a search string

Question 72

Which of the following data model are included In the Splunk Common Information Model (CIM) add-on? (select all that apply)

Options:

A.

Alerts

B.

Email

C.

Database

D.

User permissions

Question 73

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

Options:

A.

Rank

B.

Weight

C.

Priority

D.

Precedence

Question 74

Which of the following statements describe GET workflow actions?

Options:

A.

GET workflow actions must be configured with POST arguments.

B.

Configuration of GET workflow actions includes choosing a sourcetype.

C.

Label names for GET workflow actions must include a field name surrounded by dollar signs.

D.

GET workflow actions can be configured to open the URT link in the current window or in a new window

Question 75

Which of the following statements describes the command below (select all that apply)

Sourcetype=access_combined | transaction JSESSIONID

Options:

A.

An additional filed named maxspan is created.

B.

An additional field named duration is created.

C.

An additional field named eventcount is created.

D.

Events with the same JSESSIONID will be grouped together into a single event.

Question 76

What does the transaction command do?

Options:

A.

Groups a set of transactions based on time.

B.

Creates a single event from a group of events.

C.

Separates two events based on one or more values.

D.

Returns the number of credit card transactions found in the event logs.

Question 77

Data model are composed of one or more of which of the following datasets? (select all that apply.)

Options:

A.

Events datasets

B.

Search datasets

C.

Transaction datasets

D.

Any child of event, transaction, and search datasets

Question 78

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

Options:

A.

Eval fields

B.

Calculated fields

C.

Field extractions

D.

Calculated lookups

Question 79

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

Options:

A.

Macros.

B.

Field aliases.

C.

The rename command.

D.

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

Question 80

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

Options:

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.

Question 81

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

as

Options:

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$.

Question 82

Which of the following statements describe the search string below?

| datamodel Application_State All_Application_State search

Options:

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

Question 83

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

Options:

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.

Question 84

What does the following search do?

as

Options:

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.

Question 85

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

Options:

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

Question 86

Which of the following statements describes Search workflow actions?

Options:

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

Page: 1 / 29
Total 286 questions