Which of the methods listed below supports muti-factor authentication?
Answer : B
SAML is an open standard for exchanging authentication and authorization data between parties, especially between an identity provider and a service provider1.SAML supports multi-factor authentication by allowing the identity provider to require the user to present two or more factors of evidence to prove their identity2. For example, the user may need to enter a password and a one-time code sent to their phone, or scan their fingerprint and face.
What action is required to enable forwarder management in Splunk Web?
Answer : C
https://docs.splunk.com/Documentation/MSApp/2.0.3/MSInfra/Setupadeploymentserver
'To activate deployment server, you must place at least one app into %SPLUNK_HOME%\etc\deployment-apps on the host you want to act as deployment server. In this case, the app is the 'send to indexer' app you created earlier, and the host is the indexer you set up initially.
Which of the following are supported configuration methods to add inputs on a forwarder? (select all that apply)
Answer : A, B, D
https://docs.splunk.com/Documentation/Forwarder/8.2.1/Forwarder/HowtoforwarddatatoSplunkEnterprise
'You can collect data on the universal forwarder using several methods. Define inputs on the universal forwarder with the CLI. You can use the CLI to define inputs on the universal forwarder. After you define the inputs, the universal forwarder collects data based on those definitions as long as it has access to the data that you want to monitor. Define inputs on the universal forwarder with configuration files. If the input you want to configure does not have a CLI argument for it, you can configure inputs with configuration files. Create an inputs.conf file in the directory, $SPLUNK_HOME/etc/system/local
User role inheritance allows what to be inherited from the parent role? (select all that apply)
Answer : B, C
https://docs.splunk.com/Documentation/Splunk/latest/Security/Aboutusersandroles#Role_inheritance
https://docs.splunk.com/Documentation/Splunk/7.3.1/Security/Aboutusersandroles#How_users_inherit_capabilities
Which optional configuration setting in inputs .conf allows you to selectively forward the data to specific indexer(s)?
Answer : A
https://docs.splunk.com/Documentation/Splunk/7.0.3/Forwarding/Routeandfilterdatad#Perform_selective_indexing_and_forwarding
Specifies a comma-separated list of tcpout group names. Use this setting to selectively forward your data to specific indexers by specifying the tcpout groups that the forwarder should use when forwarding the data. Define the tcpout group names in the outputs.conf file in [tcpout:<tcpout_group_name>] stanzas. The groups present in defaultGroup in [tcpout] stanza in the outputs.conf file.
What is the correct order of index time precedence?
(For each of the following, highest precedence is shown at the top and lowest precedence is shown at the bottom)
A.
Answer : C
Splunk uses alayered configuration modelwhere settings are loaded in a specific order. This order determines which configuration takes precedence when multiple settings conflict. Atindex time(the point when data is parsed and indexed), the configuration precedence is clearly defined in the official documentation.
FromSplunk Docs(props.conf precedence):
Configuration file resolution order (highest to lowest precedence):
$SPLUNK_HOME/etc/users/<username>/
$SPLUNK_HOME/etc/apps/
$SPLUNK_HOME/etc/apps/
$SPLUNK_HOME/etc/system/local
$SPLUNK_HOME/etc/system/default
However, forindex-time configurations, a slight difference applies:
system/local and users/local areoften treated specially, butin practice and according to Splunk Docs, thesystem/localconfigs override apps/default, and so on.
InOption C, the correct precedence fromhighest to lowestis:
/etc/users/local (Highest)
/etc/system/default
/etc/apps/aaa/local
/etc/apps/zzz/default
/etc/system/local (Lowest of these listed)
Though system/local typically has high precedence,when users/local is involved, that is the ultimate override. Splunk Docs confirms this in:
Configuration file precedence
Configuration layering reference
Therefore, Option C reflects the correct Splunk configuration file precedence order at index time.
A user is assigned two roles with the following search filters. What is the user's applied search filter?

Answer : A
When a user is assignedmultiple rolesin Splunk and each has a defined srchFilter, Splunk combines these filters using alogical ANDoperation. This ensures that the user can only search within the intersection of constraints imposed by each role.
From Splunk Docs:
'If a user has multiple roles assigned and multiple roles specify srchFilter, Splunk softwareANDs the filters together.'
--- Source: Splunk Documentation -- authorize.conf
Let's break it down:
role_A specifies: sourcetype!=json AND index=main
role_B specifies: sourcetype=csv
To evaluate the effective search filter for the user, Splunk willANDthe two conditions:
(sourcetype=csv) AND (sourcetype!=json AND index=main)
This means the user's search is limited to events where:
sourcetype=csv (from role_B)
sourcetype!=json AND index=main (from role_A)
Combining them together logically:
srchFilter = ((sourcetype=csv) AND (sourcetype!=json AND index=main))
This is exactly what is shown inOption A.
authorize.conf - Splunk Admin Manual