Week end Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: chrismas

Free Practice Questions for the SailPoint Identity Security Engineer IdentityIQ-Engineer Exam (2026 Updated)

At Marks4sure, we are dedicated to providing IT professionals with the most accurate and reliable preparation materials for the SailPoint IdentityIQ-Engineer exam. To support your certification journey, we have made a selection of our premium 2026 Identity Security Engineer practice questions and answers available completely free. You can take this practice test as many times as you need. Every question includes a detailed, expertly verified explanation to ensure you fully grasp the core security concepts before test day.

Questions 4

The engineer is working on a workflow implementation.

After a form step, the workflow can transition to three steps:

Stop if the Reject (back) button is used,

Audit if the Approve (next) button is used and the field named comment is returned from the form to the workflow variable comment and has a value,

Provision otherwise.

The engineer writes the transitions in XML code.

Is this a valid implementation?

Proposed Solution:

< Transition >

< Source >

if (!approved) return " Stop " ;

if (comment) return " Audit " ;

return " Provision " ;

< /Source >

< /Transition >

Options:

A.

Yes

B.

No

Buy Now
Questions 5

Is the following statement about workflow step types and their usage true?

Solution: When a wait step is encountered in a foreground workflow, the user will notice this, because the screen will freeze for the specified number of seconds.

Options:

A.

Yes

B.

No

Buy Now
Questions 6

Is this a default functionality of the Lifecycle Manager (LCM) module?

Solution: Terminate Identity

Options:

A.

Yes

B.

No

Buy Now
Questions 7

Is this a true statement about localization support in IdentitylQ?

Solution: The default language can be changed from English by replacing the appropriate message files.

Options:

A.

Yes

B.

No

Buy Now
Questions 8

A customer wants to make changes in their IdentityIQ user interface.

Consider branding and other IdentityIQ UI changes. Is this statement valid?

Proposed Solution:

If SailPoint is removed from the header bar, “Powered by SailPoint IdentityIQ” must be added to the copyright footer.

Options:

A.

Yes

B.

No

Buy Now
Questions 9

Is the following statement about IdentitylQ rule inputs and outputs correct?

Solution: The lypical input variables for a rule are listed in the BeanShell rule editor in IdentitylQ, based on the rule registry.

Options:

A.

Yes

B.

No

Buy Now
Questions 10

The engineer is configuring a new application definition.

The customer wants an Audit record to be created with the error message, if provisioning fails.

Is this the rule an engineer should write to accomplish the goal?

Solution: Configure a Postlterate rule

Options:

A.

Yes

B.

No

Buy Now
Questions 11

Is this a purpose of an IdentitylQ certification?

Solution: to attest to a user ' s integrity

Options:

A.

Yes

B.

No

Buy Now
Questions 12

Is this statement true about certifications?

Solution: All certifications include generation, the active period, sign-off, and the end period.

Options:

A.

Yes

B.

No

Buy Now
Questions 13

Is this statement correct about writing and executing source mapping rules to populate identity attributes?

Solution: The Identity object is passed to the rule.

Options:

A.

Yes

B.

No

Buy Now
Questions 14

Is the following true of Identity Provisioning Policies?

Solution: Identity Provisioning Policies can be used to include allowed-values definitions or validation logic on fields so that only valid/authorized values can be specified for those fields when using the Create Identity feature to add an identity.

Options:

A.

Yes

B.

No

Buy Now
Questions 15

The engineer is working on a workflow implementation.

After a form step, the workflow can transition to three steps:

Stop if the Reject (back) button is used,

Audit if the Approve (next) button is used and the field named comment is returned from the form to the workflow variable comment and has a value,

Provision otherwise.

The engineer writes the transitions in XML code.

Is this a valid implementation?

Proposed Solution:

< Transition to= " Stop " when= " !ref:approved " / >

< Transition to= " Audit " when= " script:sailpoint.tools.Util.isNotNullOrEmpty(comment); " / >

< Transition to= " Provision " / >

Options:

A.

Yes

B.

No

Buy Now
Questions 16

IdentityIQ has been installed and set up with the contents of IdentityExtended.hbm.xml.

Is this a correct statement about the installation?

Proposed Solution:

An unlimited number of additional searchable placeholder extended attributes can be added to this installation beyond the 10 shown.

Options:

A.

Yes

B.

No

Buy Now
Questions 17

Is the following statement about workflows and sub-workflows (subprocesses) true?

Proposed Solution:

The outputs of a subprocess (sub-workflow) can be returned to variables in the calling workflow using the returns attribute of the calling step.

For example:

< Step icon= " Task " name= " Initialize " posX= " 134 " posY= " 10 "

returns= " identityRequestId,project " send= " identityName,plan " >

...

Options:

A.

Yes

B.

No

Buy Now
Questions 18

Is this a default functionality of the Lifecycle Manager (LCM) module?

Proposed Solution:

Launch Certification Campaign

Options:

A.

Yes

B.

No

Buy Now
Questions 19

A client needs a custom quicklink, which only managers can launch, in order to launch a simple workflow. Is this a valid step to take during the development of this custom quicklink?

Solution: Insert the " Managers " quicklink population as the dynamic scope in the quicklink object.

Options:

A.

Yes

B.

No

Buy Now
Questions 20

An implementation engineer needs to perform an upgrade of IdentitylQ between releases. Is the following statement true?

Solution: Every version release (excluding patch releases) between the current version of IdentitylQ and the target version of IdentitylQ must be installed in sequential order for an upgrade.

Options:

A.

Yes

B.

No

Buy Now
Questions 21

An organization is making a change at the regional level.

Many users of a financial system have incorrect entitlements. Some users are missing entitlements, and some users have excess entitlements. Work needs to be performed to clean up access.

Is this one of the IdentuylQ batch request types that can help meet this goal?

Solution: Delete Entitlement

Options:

A.

Yes

B.

No

Buy Now
Questions 22

Is the following statement about IdentityIQ rule inputs and outputs correct?

Proposed Solution:

In the Rule Editor in the IdentityIQ user interface, an input variable can be inserted by double-clicking its name from the list of " Arguments " .

Options:

A.

Yes

B.

No

Buy Now
Questions 23

An implementation engineer needs to perform an upgrade of IdentityIQ between releases.

Is the following statement true?

Proposed Solution:

All custom branding changes will automatically be updated through the upgrade process.

Options:

A.

Yes

B.

No

Buy Now
Questions 24

The engineer uses the sailpoint.api.IdentityService in a BeanShell method to look up and return all account names for an identity on the application ' MagicBox ' . Is this a correct implementation?

Proposed Solution:

import sailpoint.api.IdentityService;

import sailpoint.api.SailPointContext;

import sailpoint.object.Application;

import sailpoint.object.Identity;

import sailpoint.object.Link;

import sailpoint.tools.GeneralException;

public List getAccountNames(SailPointContext context, Identity identity) throws GeneralException {

Application application = context.getObjectByName(Application.class, " MagicBox " );

IdentityService service = new IdentityService(context);

List < String > accountNames = new ArrayList < String > ();

List < Link > links = service.getLinks(identity, application);

if (links != null) {

for (Link link : links) {

accountNames.add(link.getNativeIdentity());

}

}

return accountNames;

}

Options:

A.

Yes

B.

No

Buy Now
Questions 25

Can a Workgroup be used for the following scenario?

Solution: Automatically creating multiple groups based on the values of a single identity attribute.

Options:

A.

Yes

B.

No

Buy Now
Questions 26

is the following a valid role option that can be configured?

Solution: Configure a role to include a set of IdentitylQ capabilities.

Options:

A.

Yes

B.

No

Buy Now
Questions 27

An engineer needs to first create a custom audit event and then set up an associated report.

What are four steps to accomplish this goal?

Proposed Solution:

Set up a new AuditAction in the AuditConfig object XML:

< AuditAction displayName= " Custom New Audit Event " enabled= " true " name= " actionname " / >

Options:

A.

Yes

B.

No

Buy Now
Questions 28

Is this a benefit of using the Run Rule feature of the Debug-Object page?

Proposed Solution:

It can be used to display the return value of simple code.

Options:

A.

Yes

B.

No

Buy Now
Questions 29

Is this statement true about identitylQ ' s syslog event storage?

Solution: IdentitylQ logging events are stored in a database table in addition to log files.

Options:

A.

Yes

B.

No

Buy Now
Questions 30

Can the search type in Identity be used to accomplish this result?

Proposed Solution:

Identifying the number of certifications that are currently in the revocation phase

Options:

A.

Yes

B.

No

Buy Now
Questions 31

Is the following statement about workflows and sub-workflows (subprocesses) true?

Proposed Solution:

Many standard LCM sub-workflows can be leveraged in custom workflows, with their behavior controlled via input variables.

Options:

A.

Yes

B.

No

Buy Now
Questions 32

An engineer needs to first create a custom audit event and then set up an associated report.

What are four steps to accomplish this goal?

Proposed Solution:

Write logic in a BeanShell rule, task, or workflow step to created the audit event, populated with the appropriate data values.

Options:

A.

Yes

B.

No

Buy Now
Questions 33

The engineer is analyzing on a workflow Transition.

IdentityIQ-Engineer Question 33

The following variable values are known:

IdentityIQ-Engineer Question 33

Will the workflow continue to this step?

Solution: Approve

Options:

A.

Yes

B.

No

Buy Now
Questions 34

Can the Provisioning tab under " Administrator Console ' be used to do the following task?

Solution: Map the associated WorkflowCase to a particular Provisioning Transaction.

Options:

A.

Yes

B.

No

Buy Now
Questions 35

Can the search type in Identity be used to accomplish this result?

Proposed Solution:

Identifying the number of employees that report to a specific person

Options:

A.

Yes

B.

No

Buy Now
Questions 36

Is this a correct procedure for testing generated emails in a non-production system?

Proposed Solution:

Change the Email Notification Type to IMAP under Global Settings > Configure IdentityIQ Settings > Mail Settings, run the test scenario, and verify if the emails were successfully delivered to mailboxes specified on Identity objects.

Options:

A.

Yes

B.

No

Buy Now
Questions 37

Is this configuration option required when an engineer sets up any application?

Proposed Solution:

Identity Attribute

Options:

A.

Yes

B.

No

Buy Now
Questions 38

Match the following IdentitylQ console commands To their functions.

Use the drop-down menus to select your answers. Answer options from the drop-down menus may only be used once Some will not be used at all.

IdentityIQ-Engineer Question 38

IdentityIQ-Engineer Question 38

Options:

Buy Now
Questions 39

How should an engineer schedule the tasks to most efficiently achieve the following goals?

Goals:

• Process the Employee Authoritative application at 5:00 AM and 12:00 PM.

• Process the Contractor Authoritative application at 5:10 AM and 12:10 PM.

• Process the Active Directory application at 5:20 AM and 12:20 PM.

• Process the Finance application at 8:00 PM.

• Check for expired work items at 12:00 AM.

• Perform identity request maintenance at 2:00 AM.

Schedule parameters:

• Each application aggregation takes anywhere between 30 minutes and 2 hours.

• The run schedule is for a 24-hour period, which begins at 12:00 AM.

Instructions:

• Drag the required tasks from the left into the answer area on the right, and place them in the correct order, starting at 12:00 AM.

• Ordinal numbers (such as 1st, 2nd, and 3rd) in the options indicate which run of the day it is for the task type.

• There will be unused task options.

IdentityIQ-Engineer Question 39

Options:

Buy Now
Questions 40

Is the following statement true?

Solution: Every Link object must be associated to an Identity object

Options:

A.

Yes

B.

No

Buy Now
Questions 41

Is this statement true about the Application, Identity, ManageAttribute, Bundle, and Link objects in IdentitylQ?

Solution: An Application object is not required to aggregate external user account information into IdentitylQ.

Options:

A.

Yes

B.

No

Buy Now
Questions 42

An engineer needs to trigger a workflow when a Division attribute changes from IT to Senior IT, but only when the user is a manager.

Is this a valid process that the engineer could use to launch a workflow for a lifecycle event?

Proposed Solution:

Create a trigger with an event type of create.

Options:

A.

Yes

B.

No

Buy Now
Questions 43

An engineer is assigned to configure an identity attribute. The requirements are:

Purpose: Add a user ' s security clearance to their identity

Read from: Workday; if not found in Workday, Contractor file; otherwise, leave empty

Usage 1: Display as option in Advanced Analytics

Usage 2: Use when writing rules

Usage 3: Can be updated through the Edit Identity Quicklink, but Workday is authoritative

Usage 4: List as entitlement on Identity Cubes

Does the engineer need to set this configuration option on the identity attribute to meet the requirements?

Proposed Solution:

Entitlement

Options:

A.

Yes

B.

No

Buy Now
Questions 44

Is the following true of Identity Provisioning Policies?

Solution: The Create Identity Provisioning Policy will be applied to identity creation during aggregation from an authoritative source so that identities will be created with valid/authorized attribute values.

Options:

A.

Yes

B.

No

Buy Now
Questions 45

Can this action be performed as part of configuring an application definition in IdentitylQ?

Solution: Specify which users should be provisioned with a basic account as part of a joiner event.

Options:

A.

Yes

B.

No

Buy Now
Questions 46

Can the rule library named Common Rules Library " be included in a Rule by adding this code?

Solution:

IdentityIQ-Engineer Question 46

Options:

A.

Yes

B.

No

Buy Now
Questions 47

Is this configuration option required when an engineer sets up any application?

Proposed Solution:

Create Policy

Options:

A.

Yes

B.

No

Buy Now
Questions 48

Can the following be achieved via configuration of control variables in the out-of-the-box Lifecycle Manager (LCM) workflows?

Proposed Solution:

Specify which applications support new account requests.

Options:

A.

Yes

B.

No

Buy Now
Questions 49

An engineer needs to first create a custom audit event and then set up an associated report.

What are four steps to accomplish this goal?

Proposed Solution:

Set up a new AuditAction in the AuditConfig object XML:

< ObjectAttribute displayName= " User Type " editMode= " Permanent " extendedNumber= " 2 " name= " userType " type= " string " / >

Options:

A.

Yes

B.

No

Buy Now
Questions 50

Is this where email templates can be viewed after product installation?

Proposed Solution:

In the Debug page as an EmailTemplate object.

Options:

A.

Yes

B.

No

Buy Now
Questions 51

Is this statement valid regarding the control and usability of the Debug pages in IdentitylQ?

Solution: The current version and patch level of IdentitylQ can be found through the Debug-About page.

Options:

A.

Yes

B.

No

Buy Now
Questions 52

Is this a purpose of an IdentitylQ certification?

Solution: to attest lo a user ' s system access

Options:

A.

Yes

B.

No

Buy Now
Questions 53

For a user who wants to be able to enable an account for a subordinate or themselves through Manage Accounts, does this configuration need to be performed in Lifecycle Manager (LCM)?

Select the Rehire action under Manage Accounts Options in the LCM Configuration.

Solution: Select the Rehire action under Manage Accounts Options in the LCM Configuration.

Options:

A.

Yes

B.

No

Buy Now
Questions 54

A bank is two years into an ongoing project to provide all access through roles. The bank is actively using roles and actively adding to their role model. They need to ensure that all roles include the correct entitlements.

Will this certification type achieve the goal?

Solution: Application Owner Certification

Options:

A.

Yes

B.

No

Buy Now
Questions 55

Is this an example of a mover lifecycle event?

Solution: A contractor whose contract expired and accounts were disabled has a new contract with the company; the contractor needs all of their previous accounts enabled.

Options:

A.

Yes

B.

No

Buy Now
Questions 56

Can the Environment tab under ‘Administrator Console’ be used to do the following task?

Proposed Solution:

Start/Stop a particular application server.

Options:

A.

Yes

B.

No

Buy Now
Questions 57

Is this a valid scenario that can be achieved in IdentitylQ by configuring the Quicklink populations?

Solution: Allow a user to create a new identity cube in IdentitylQ.

Options:

A.

Yes

B.

No

Buy Now
Questions 58

A client wants users who belong to an IdentitylQ workgroup named Management to be able to request entitlements and roles, but only for other users whose location attribute is the same as theirs.

Is this a population that will achieve the goal?

Solution: Create a quicklink population, set the membership match list to " All, " and set " Who can members request for? ' ' as share attributes with the requester, with the attribute set to location. '

Options:

A.

Yes

B.

No

Buy Now
Questions 59

Can the following IdentityIQ object be extended to store client-specific data by updating the corresponding .HBM file?

Proposed Solution:

CertificationItem

Options:

A.

Yes

B.

No

Buy Now
Exam Code: IdentityIQ-Engineer
Exam Name: SailPoint Certified IdentityIQ Engineer
Last Update: Aug 15, 2026
Questions: 199

PDF + Testing Engine

$55.71   $185.69

Testing Engine

$42.85   $142.83

PDF (Q&A)

$47.13   $157.11