SSO and Federation • Identity Governance • Privileged Access • SailPoint • 2026

IAM and SailPoint Interview Questions

30 questions What each one tests, an answer frame, a spoken answer 36 min read

This page is for anyone facing an identity and access management round, from a first IAM analyst job to a senior SailPoint or PAM engineer. Most rounds open with authentication versus authorization and MFA, move to SSO with SAML, OAuth and OpenID Connect, then test the identity lifecycle, role models, access reviews and separation of duties. SailPoint roles add aggregation, correlation, rules and lifecycle workflows, and privileged access roles add vaulting and just-in-time elevation. Each question shows what the interviewer is really checking, the shape of a strong answer and a short answer you can say out loud. Practise saying them, then swap in your own stories.

Search all questions by round, difficulty and level, or save the ones you want to practise.

IAM Basics 2 questions

Easy Technical round Fresher Practice question

1. What is the difference between authentication and authorization? Give me an example of each failing.

What the interviewer is really testing:
Whether you can separate proving who someone is from deciding what they may do, because every IAM design decision sits on one side of that line.
Answer frame:

Authentication: proving identity, with a password, a key, a token or a biometric.

Authorization: deciding what that proven identity is allowed to do, from roles, groups or policies.

Order and failures: authentication comes first; a wrong password is an authentication failure, a valid user opening a page they have no right to is an authorization failure.

Sample spoken answer:

"Authentication answers 'who are you?' and authorization answers 'what are you allowed to do?'. When I log in with my password and an authenticator code, the system is authenticating me. Once it knows it's me, it checks my roles or group memberships to decide whether I can open the payroll report. That second check is authorization. Authentication always comes first, because you can't make an access decision about someone you haven't identified. On the web it shows up in the status codes: a 401 really means 'I don't know who you are', and a 403 means 'I know who you are, and you can't have this'. In IAM work the split matters because the tools differ too. SSO and MFA are about authentication, while roles, access requests and reviews are about authorization."

Red flag to avoid:

Using the two words interchangeably, or saying MFA controls what a user can access.

They may ask next:
  • Where does SSO fit, authentication or authorization?
  • Can a system authorize a request without knowing exactly who the user is?
Say it in 60 seconds
Easy Technical round Fresher, Mid-level Practice question

2. What actually counts as multi-factor authentication? Is a password plus a security question MFA?

What the interviewer is really testing:
Whether you know MFA means different kinds of factor, not just more steps, and whether you know which methods resist phishing.
Answer frame:

Three factor types: something you know, something you have, something you are.

The rule: MFA needs at least two different types; two things you know is still one factor.

Strength: phishing-resistant methods like security keys and passkeys beat codes a user can be tricked into typing.

Sample spoken answer:

"MFA means combining at least two different kinds of factor: something you know, like a password or PIN, something you have, like a phone or a security key, and something you are, like a fingerprint. A password plus a security question is not MFA. Both are things you know, so an attacker who phishes one can usually phish the other, and security answers are often guessable from social media. That's really two-step, single-factor login. A password plus a code from an authenticator app is MFA, because the code proves you hold a device. I'd also point out that not all MFA is equal. A code can still be typed into a fake login page, while a security key or passkey is tied to the real site's domain, so it's much harder to phish. For admins I'd push for the phishing-resistant kind."

Red flag to avoid:

Counting the number of steps instead of the kinds of factor, so a password plus a PIN gets called MFA.

They may ask next:
  • What is MFA fatigue, and how does number matching help against it?
  • Is a fingerprint on a phone that then unlocks a passkey one factor or two?
Say it in 60 seconds

Federation & SSO 6 questions

Medium Technical round Fresher, Mid-level Practice question

3. Walk me through a SAML single sign-on login that starts at the application, step by step.

What the interviewer is really testing:
Whether you understand the redirects and trust behind SAML well enough to troubleshoot a broken login, not just set one up from a template.
Answer frame:

Request: the service provider sends an authentication request to the identity provider through a browser redirect.

Assertion: the identity provider logs the user in and posts a signed assertion back to the app's assertion consumer service URL.

Validation: the app checks the signature, audience, recipient and time window, then maps the NameID to a local user and creates a session.

Sample spoken answer:

"Say a user opens the expense app without a session. The app, the service provider, builds a SAML authentication request and redirects the browser to the identity provider. The IdP checks whether the user already has a session with it. If not, it prompts for credentials and MFA. Then it builds an assertion saying who the user is, usually as the NameID plus some attributes like email and groups, signs it with its private key, and sends it back through the browser as a form POST to the app's assertion consumer service URL. The app validates it: signature against the IdP certificate it trusts, the audience is really this app, the time window hasn't passed, and the response matches the request it sent. Only then does it find the local user and start a session. With the usual redirect and POST bindings, the browser carries everything and the two servers never talk directly during the login."

Red flag to avoid:

Saying the app calls the identity provider directly to check the password, or not mentioning that the assertion is signed and validated.

They may ask next:
  • What changes when the login starts at the identity provider's portal instead of at the app?
  • Which values must match exactly between the two sides for the login to work?
Say it in 60 seconds
Medium Technical round Mid-level Practice question

4. OAuth 2.0 and OpenID Connect get mixed up a lot. What does each one do, and what is an ID token versus an access token?

What the interviewer is really testing:
Whether you know OAuth is delegated authorization and OIDC is the identity layer on top, and that using an access token as proof of login is a real bug.
Answer frame:

OAuth 2.0: lets an app get limited access to an API on a user's behalf, through an access token.

OpenID Connect: adds login on top of OAuth; the openid scope returns an ID token that says who the user is.

Tokens: the ID token is a signed JWT meant for the client app; the access token is meant for the API and the client should treat it as opaque.

Sample spoken answer:

"OAuth 2.0 is about delegated authorization. It lets an app call an API on my behalf with limited rights, like 'read my calendar', without ever seeing my password. What it hands out is an access token, and that token is for the API, not for the app to read. OAuth on its own doesn't define how the app learns who I am. OpenID Connect fills that gap. The app asks for the openid scope and, alongside the access token, gets an ID token. That's a signed JWT with claims like the issuer, the subject identifier, the audience and an expiry, and the app validates it to log me in. So the rule I follow is simple: the ID token is proof of login for the client, the access token is a key for the API. Using an access token as proof of who logged in is a classic mistake."

Red flag to avoid:

Calling OAuth an authentication protocol, or saying the client should decode the access token to find out who the user is.

They may ask next:
  • Which claims must a client check before it trusts an ID token?
  • What is a refresh token for, and why do we keep access tokens short-lived?
Say it in 60 seconds
Hard Technical round Mid-level, Senior Practice question

5. Why do mobile apps and single-page apps use the authorization code flow with PKCE, and how does PKCE actually protect the code?

What the interviewer is really testing:
Whether you understand public clients, which cannot keep a secret, and can explain the code interception problem PKCE solves.
Answer frame:

Public clients: a mobile app or browser app can't hide a client secret, so the code exchange needs another proof.

Mechanism: the client makes a random verifier, sends a hash of it with the login request, then sends the verifier itself when swapping the code for tokens.

Why it works: an attacker who steals the code doesn't have the verifier, so the token endpoint refuses the swap.

Sample spoken answer:

"A mobile app or a single-page app is a public client. Anything shipped to the device can be pulled out, so a client secret there protects nothing. The risk is that the authorization code, which comes back through a redirect, gets intercepted, say by another app registered for the same custom URL scheme. PKCE closes that. Before the login, the app generates a long random string called the code verifier and keeps it in memory. It sends a SHA-256 hash of it, the code challenge, with the authorization request. The server remembers that challenge against the code it issues. When the app swaps the code for tokens, it sends the original verifier, and the server hashes it and compares. Someone who stole only the code can't produce the verifier, so the swap fails. Current guidance recommends PKCE for every client, not just public ones, and the old implicit flow is no longer recommended."

Red flag to avoid:

Saying PKCE encrypts the tokens, or suggesting the app embed a client secret instead.

They may ask next:
  • Why is the plain challenge method weaker than the hashed one?
  • Where should a single-page app keep its tokens, and what are the trade-offs?
Say it in 60 seconds
Medium Technical round Mid-level Practice question

6. SSO to one app suddenly fails for everyone with a signature error, right after the identity provider's signing certificate was renewed. How do you fix it and stop it recurring?

What the interviewer is really testing:
Whether you can connect a symptom to the trust setup behind SAML and think about certificate rollover as an operational process.
Answer frame:

Confirm: capture the SAML response in the browser and compare the certificate in it with the one the app trusts.

Fix: load the new signing certificate or refresh the metadata on the app side, keeping the old one active if the app allows two.

Prevent: track expiry dates, use metadata URLs where the app supports them, and plan rollovers with app owners.

Sample spoken answer:

"A signature error for everyone right after a certificate renewal almost always means the app still trusts the old certificate. I'd confirm it first: capture the SAML response with a browser tracer, decode it, and compare the certificate in the signature with the one configured in the app. If they differ, that's the cause. The fix is to upload the new certificate or re-import the IdP metadata in the app. Some apps accept two certificates, so I'd add the new one next to the old one. To stop it happening again, I'd keep a list of every SAML app with its certificate expiry and owner, alert well before expiry, use a metadata URL for apps that can refresh it themselves, and for manual apps agree a rollover window with the owner. Many identity providers also let you add the new certificate ahead of time, so both sides are ready before the switch."

Red flag to avoid:

Turning off signature validation in the app to get users working again.

They may ask next:
  • What would you check if only some users failed instead of everyone?
  • What does a clock skew problem look like in a SAML error, and how do you spot it?
Say it in 60 seconds
Easy Technical round Fresher, Mid-level Practice question

7. What is SCIM, and why doesn't setting up SSO for an app remove the account when an employee leaves?

What the interviewer is really testing:
Whether you see that SSO controls login while provisioning controls accounts, and why leavers slip through when only SSO is in place.
Answer frame:

SSO: handles the login only; the app's own account and data stay in place.

SCIM: a standard REST and JSON API for creating, updating and deactivating users and groups in an app.

Gap: without provisioning, accounts that don't need SSO, like local logins or API tokens, survive a leaver.

Sample spoken answer:

"SSO only deals with the login. When someone leaves and we disable them in the identity provider, they can't sign in through SSO any more, but their account inside the app still exists. If the app also allows a local password, or the user created API tokens, that account can still be used. SSO with just-in-time provisioning can even create accounts at first login, but it never removes them. SCIM, the System for Cross-domain Identity Management, is the standard that fixes this. It's a REST API with JSON, with standard endpoints for users and groups, so the identity platform can create an account, update attributes when someone moves, and set the account to inactive when they leave. So for any important app I want both: SSO for the login, and SCIM or a connector for the account lifecycle."

Red flag to avoid:

Saying that once an app is on SSO, disabling the user in the identity provider fully removes their access.

They may ask next:
  • How would you handle an app that supports SSO but has no provisioning API at all?
  • When should a SCIM deprovision deactivate an account rather than delete it?
Say it in 60 seconds
Medium Behavioral round Mid-level, Senior Practice question

8. Tell me about an application you onboarded to SSO or identity governance where the app owner resisted. How did you get it done?

What the interviewer is really testing:
Whether you can deliver IAM work that depends on other teams, and handle pushback with evidence and help rather than escalation alone.
Answer frame:

Situation: which app, why it mattered, and what the owner was worried about.

Action: how you reduced their effort and risk, and what you agreed.

Result: the outcome, and what you changed in your onboarding process.

Sample spoken answer:

"At my last company we had to bring a finance reporting app onto SSO and quarterly reviews, because an audit had flagged it for local passwords. The app owner pushed back hard. Month-end was close, and a previous SSO change on another app had locked users out for a day. So I took the risk off her plate. I set up the SAML integration in a test environment myself, got two of her power users to test it, and kept local login open for a named admin as a fallback. We went live the week after month-end, early in the morning, with me on a call. It worked, and a month later we turned off local passwords. For reviews, I built the account export with her team so it came from a report they already ran. After that, I wrote an onboarding checklist and test plan that we reused for every app, and onboarding went faster."

Red flag to avoid:

A story where the only move was escalating to management, or where the go-live had no test and no fallback.

They may ask next:
  • What would you have done if she had refused even after the test went well?
  • How do you decide which applications to onboard first?
Say it in 60 seconds

Access Models 2 questions

Medium Technical round Fresher, Mid-level Practice question

9. Compare role-based and attribute-based access control. When would you choose each one?

What the interviewer is really testing:
Whether you can weigh how easy a model is to review against how flexible it is, rather than calling one simply better.
Answer frame:

RBAC: permissions grouped into roles, users assigned to roles; easy to understand and certify.

ABAC: a policy checks attributes of the user, the resource and the context at request time.

Choosing: RBAC for stable job-based access, ABAC for fine-grained or context-aware rules; most real setups mix them.

Sample spoken answer:

"With role-based access, I bundle permissions into roles like 'accounts payable clerk' and assign people to roles. It's easy to explain and easy to review, because a manager can look at a role and say yes or no. The weakness is that every exception tends to become a new role, and you end up with thousands of them. Attribute-based access evaluates a rule at the moment of the request, using attributes: the user's department and location, the record's region or sensitivity, the time or device. A rule like 'managers can see salary records only for their own cost centre' is natural in ABAC and painful in RBAC. The trade-off is that ABAC is harder to audit, because you can't just list who has access; you have to evaluate the policy. In practice I'd use roles for coarse, job-based access and attributes for fine-grained rules inside the app."

Red flag to avoid:

Saying ABAC replaces roles entirely, without mentioning that it is harder to review and certify.

They may ask next:
  • How would you answer an auditor who asks 'who can see this data?' under an ABAC model?
  • Where does a user's group membership in a directory fit into these two models?
Say it in 60 seconds
Hard Technical round Senior Practice question

10. A company has ended up with thousands of roles and nobody trusts them. How would you rebuild the role model?

What the interviewer is really testing:
Whether you have designed a role model in real life, including role mining, business ownership and keeping it clean after launch.
Answer frame:

Discover: mine current access by department and job to find entitlements that most people in a group share.

Layer: birthright roles from HR attributes, business roles owned by the business, IT roles that hold the technical entitlements.

Govern: an owner per role, role reviews, a rule for when an exception becomes a role, and removal of unused roles.

Sample spoken answer:

"I'd start from data, not from a workshop. I'd pull entitlements for everyone and mine them by department, job code and location to find the access that almost everyone in a group shares. That common core becomes a role. Everything else stays as requestable access. I'd layer it. Birthright roles are assigned automatically from HR attributes, like email and the intranet for everyone. Business roles describe a job and are owned by a business person. Those contain IT roles, which hold the technical entitlements for each application. Every role gets a named owner, a description a manager can understand, and a regular review of what's inside it. I'd also set a rule: an exception only becomes a role when enough people need it for a lasting reason. And I'd retire roles with no members or no recent use. Explosion usually comes from missing ownership, so the governance matters as much as the design."

Red flag to avoid:

Proposing a role for every unique combination of access, or designing roles with IT alone and no business owners.

They may ask next:
  • How do you get a business owner to actually take responsibility for a role?
  • How would you measure whether the new role model is working?
Say it in 60 seconds

Identity Lifecycle 4 questions

Easy Technical round Fresher, Mid-level Practice question

11. Explain the joiner, mover and leaver process. What should drive it, and what should happen at each stage?

What the interviewer is really testing:
Whether you know the identity lifecycle end to end and that it should be driven by the authoritative HR record, not by tickets.
Answer frame:

Source: the HR system is the authoritative source; changes there trigger the lifecycle.

Joiner and mover: birthright access on day one; on a move, add the new job's access and remove the old job's.

Leaver: disable accounts and end sessions at the termination time, then remove or delete them later according to policy.

Sample spoken answer:

"Joiner, mover, leaver is the lifecycle of a person's access, and it should be driven by the HR system as the authoritative source, not by someone remembering to raise a ticket. When a new hire is entered in HR, the identity platform creates the identity and gives birthright access, like email, the directory account and the tools every employee needs, based on attributes such as department and location. Anything extra goes through a request. When HR records a move, like a new department or manager, the person gets the new job's access and the old job's access is removed, sometimes after a short overlap for handover. When HR records a termination, the accounts are disabled at the termination time and active sessions are ended. Later, after the retention period, accounts are deleted. The point is that access follows the HR record automatically, so nothing depends on memory."

Red flag to avoid:

Describing a process driven by manual tickets with no authoritative source, or deleting a leaver's accounts on the spot with no mention of ownership of their data.

They may ask next:
  • How do you handle contractors who aren't in the HR system at all?
  • What should happen if HR enters a termination date a week after the person actually left?
Say it in 60 seconds
Medium Technical round Mid-level, Senior Practice question

12. Why is the mover case the one most access programs get wrong, and how do you stop privilege creep when people change jobs?

What the interviewer is really testing:
Whether you understand that access builds up silently on internal moves, and know practical controls that remove old access without breaking handovers.
Answer frame:

Why it fails: joiners and leavers are obvious events; movers keep working, so nobody asks for old access to go.

Controls: recalculate role-based access on the move and schedule removal of the rest after a short grace period.

Check: ask the new manager to confirm kept access, and run a targeted review for recent movers.

Sample spoken answer:

"Joiners and leavers are loud events. Someone can't work without access, or they're gone. Movers are quiet. They get the new access they ask for, nobody complains about the old access they still have, and after three or four moves a long-serving person can hold far more than anyone in their current job. That's privilege creep, and it's what shows up as toxic combinations in a segregation-of-duties scan. I'd fix it in the lifecycle. When HR changes someone's department or job code, the role-based access is recalculated straight away: new birthright roles added, old ones removed. For access that was requested by hand, I'd schedule removal after a short grace period, so the person can finish handover work. Before that date, the new manager gets a task to confirm anything the person genuinely still needs. And I'd run a small targeted review of everyone who moved in the last quarter."

Red flag to avoid:

Treating a move as just adding the new job's access, with nothing removed.

They may ask next:
  • What if the old manager insists the person must keep helping their old team for months?
  • How would you spot people who already have years of accumulated access?
Say it in 60 seconds
Medium Technical round Mid-level, Senior Practice question

13. How do you govern service accounts and other non-human identities that have no manager and never leave the company?

What the interviewer is really testing:
Whether you can apply ownership, credential hygiene and review to identities outside the HR-driven lifecycle, which is where many breaches start.
Answer frame:

Inventory and owner: find them, and give each one a named human owner and a purpose.

Credentials: no interactive login, secrets in a vault with rotation, or platform-managed identities with no stored secret.

Review: narrow permissions, regular certification by the owner, and a clear process when the owner leaves.

Sample spoken answer:

"The core problem is that the normal lifecycle hangs off HR, and a service account has no HR record, so nothing ever triggers its removal. I start with an inventory: aggregate accounts from the directory, databases and cloud, and flag anything that looks like a service or application account. Each one then needs a named human owner and a stated purpose, recorded in the identity platform, so it can be reviewed like anything else. For credentials, I block interactive login, store the secret in a vault that rotates it, and where the platform supports it, move to a managed identity so there's no stored secret at all. Permissions get cut to what the job needs. The owner certifies it on a regular cycle. And when the owner leaves or moves, ownership passes to their manager with a task to confirm or retire the account, so it never becomes orphaned."

Red flag to avoid:

Excluding service accounts from reviews because they have no manager, or sharing one service account across many applications.

They may ask next:
  • How would you rotate a password that is hard-coded in an old application's config file?
  • How would you tell whether an account with a person's name on it is really being used by a script?
Say it in 60 seconds
Medium Situational round Mid-level, Senior Practice question

14. An auditor finds forty active accounts in a critical application that belong to people who left months ago. What do you do, in what order?

What the interviewer is really testing:
Whether you can contain the risk fast, check for misuse, find the real root cause in the leaver process, and give the auditor proper evidence.
Answer frame:

Contain: confirm the list against HR and disable the accounts now, not delete them.

Investigate: check last-login and activity logs for any use after each person's leaving date.

Fix and evidence: find why the leaver process missed this app, fix it, and show the auditor the fix working.

Sample spoken answer:

"First I'd confirm the list. I'd check each account against the HR record, because a few may be rehires, name clashes or service accounts. For the confirmed ones, I'd disable them the same day. Disable, not delete, so the evidence and any owned data survive. Next I'd pull last-login dates and activity logs. Any login after someone's leaving date becomes a security incident, and I'd bring in the security team. Then the root cause. Usually it's one of three things: the app isn't connected to the identity platform, its accounts don't correlate to identities so the leaver never reaches them, or contractors aren't in HR at all. I'd fix that for this app, connect it or add it to the export process, and check other apps for the same gap. For the auditor, I'd provide the disabled list with timestamps, the root cause, the fix, and a later orphan report showing it stays clean."

Red flag to avoid:

Deleting the accounts straight away, or fixing only these forty with no root cause and no look for misuse.

They may ask next:
  • One of the accounts was used last week by a shared team login. What changes in your plan?
  • How would you monitor for orphan accounts continuously instead of waiting for the next audit?
Say it in 60 seconds

Access Governance 4 questions

Easy Technical round Fresher, Mid-level Practice question

15. What is an access certification campaign, what types can you run, and what happens after a reviewer clicks revoke?

What the interviewer is really testing:
Whether you know the purpose and mechanics of access reviews, including that a revoke must end in real removal with evidence.
Answer frame:

Purpose: a periodic, recorded check that each person's access is still needed, often required by auditors.

Types: manager reviews, application or entitlement owner reviews, role reviews, and targeted reviews of risky access.

After revoke: a removal request goes to the target system, and the campaign stays open until removal is confirmed.

Sample spoken answer:

"A certification campaign is a scheduled review where the right person confirms, item by item, that someone's access is still needed. Auditors ask for it because it's proof the company doesn't just grant access, it also checks it. There are a few common types. A manager review shows each manager their team's access. An application or entitlement owner review shows the owner of a system everyone who can use it, which is better for technical access a manager may not understand. Role reviews check both who holds a role and what's inside it. And targeted reviews focus on something specific, like privileged access or recent movers. When a reviewer clicks revoke, that decision has to turn into real removal. In an identity governance tool it becomes a provisioning request through a connector, or a manual task for disconnected apps. I'd only call the campaign closed once removals are confirmed, because a revoke that never happened is a finding."

Red flag to avoid:

Treating the review as done when reviewers sign off, without checking that revoked access was actually removed.

They may ask next:
  • How often should privileged access be reviewed compared with normal access?
  • What evidence would you give an auditor to show a campaign was done properly?
Say it in 60 seconds
Medium Technical round Fresher, Mid-level Practice question

16. What is separation of duties? Give me a real conflict, and explain how you catch it before and after access is granted.

What the interviewer is really testing:
Whether you understand the fraud risk behind SoD and the difference between preventive and detective checks in an IGA tool.
Answer frame:

Idea: no single person should control every step of a sensitive process.

Example: creating a supplier and approving payments to suppliers, or writing code and deploying it to production alone.

Checks: preventive at request time, detective through regular policy scans of existing access.

Sample spoken answer:

"Separation of duties means no one person should be able to run a sensitive process from start to finish on their own, because then they could commit fraud or a serious error with nobody noticing. A classic finance conflict is someone who can create a new supplier and also approve payments to suppliers. They could set up a fake supplier and pay it. In IT, it's one person who can both change code and push it to production without review. In an identity governance tool I define these as policies: this entitlement or role conflicts with that one. Then I check them twice. Preventively, when someone requests access, the tool flags the conflict before approval, so the approver sees it. Detectively, a regular scan checks everyone's current access, because conflicts also come from moves, role changes or access granted outside the tool. Each violation then needs a fix or a documented exception."

Red flag to avoid:

Defining SoD only as 'least privilege', or relying only on request-time checks with no scan of existing access.

They may ask next:
  • Why can a conflict exist even when every single access request was approved correctly?
  • Who should own the list of conflicting duties, IT or the business?
Say it in 60 seconds
Medium Situational round Mid-level, Senior Practice question

17. In your quarterly access review, most managers approve every line within minutes. What would you change?

What the interviewer is really testing:
Whether you see rubber-stamping as a design problem, and can make reviews smaller, clearer and measurable instead of just sending reminders.
Answer frame:

Measure: show the problem with data, like review time per item and revoke rates by reviewer.

Make it reviewable: fewer items, plain-English descriptions, last-used dates and flags for unusual access.

Target and follow up: send technical access to owners, focus on risky items, and spot-check approvals.

Sample spoken answer:

"I'd treat it as a design problem first. If a manager gets three hundred lines of cryptic group names, approving everything is the rational thing to do. I'd start by measuring: time spent per item, revoke rate per reviewer, and how many managers approved everything. That gives me evidence for the compliance lead. Then I'd shrink the reviews. Access covered by a reviewed role, or birthright access, doesn't need line-by-line review. I'd give every entitlement a plain-English description, show the last-used date, and flag access that no one else in the team holds. Technical access goes to the application owner, who understands it, not the manager. For high-risk items I'd run smaller, more frequent targeted reviews. And I'd add a check afterwards: sample some approvals, and where approved access turns out to be unused or wrong, go back to that reviewer. Managers engage when they can see the review is read."

Red flag to avoid:

Only sending more reminders or adding a mandatory comment box, without making the review smaller or clearer.

They may ask next:
  • Would you ever auto-revoke access that a reviewer doesn't respond to in time?
  • How would you explain the change to managers who see reviews as a waste of time?
Say it in 60 seconds
Hard Situational round Senior Practice question

18. A small team says one person must hold two conflicting finance roles because there's nobody else. The SoD policy says no. What do you do?

What the interviewer is really testing:
Whether you can manage risk instead of blocking the business, using mitigating controls, formal risk acceptance and time limits.
Answer frame:

Understand: confirm the conflict is real and whether the work can be split or a narrower permission used.

Mitigate: add a compensating control, like an independent review of every transaction the person makes in the risky area.

Accept formally: a named business owner signs a time-limited exception that comes back for re-approval.

Sample spoken answer:

"I wouldn't just block it, and I wouldn't quietly grant it. First I'd check the conflict is real. Sometimes the person only needs a narrower permission, or a colleague in another team could approve instead. If the conflict truly can't be avoided, I'd design a compensating control with finance. For example, a monthly report of every supplier the person created and every payment they approved goes to their manager or to internal audit, who reviews and signs it. Then it becomes a formal exception. The business owner of the process signs a risk acceptance that names the conflict, the control and an end date, say six months, and the SoD violation is marked as mitigated in the governance tool with that expiry. When it expires, it comes back for review. That way the business keeps running, the risk is owned by someone with the authority to accept it, and the auditor sees a controlled decision, not a gap."

Red flag to avoid:

Granting the access with no control or end date, or refusing outright and leaving the business unable to work.

They may ask next:
  • Who should sign the risk acceptance, and why not the IAM team?
  • What if the compensating control reports are never actually reviewed?
Say it in 60 seconds

Privileged Access 4 questions

Easy Technical round Fresher, Mid-level Practice question

19. What does a privileged access management tool do that normal identity governance doesn't?

What the interviewer is really testing:
Whether you know the core PAM controls and why admin credentials need handling beyond approve-and-review.
Answer frame:

Vault: privileged passwords and keys stored centrally, checked out with approval, rotated after use.

Sessions: admin sessions go through a proxy that hides the password and records the session.

Scope: governance decides who should have access; PAM controls how powerful credentials are used, moment to moment.

Sample spoken answer:

"Identity governance answers who should have what, and it works on a cycle: requests, approvals, reviews. Privileged access management controls how the most powerful credentials are actually used, every time. The heart of it is a vault. Admin passwords, root accounts and SSH keys are stored there instead of in spreadsheets or people's heads. An admin checks a credential out, often with an approval or a ticket number, and the tool rotates the password afterwards, so a copied password is useless. The second piece is session management. The admin connects through the PAM tool, which injects the credential so they never see it, and records the session so there's a trail of exactly what was done. PAM tools also discover privileged accounts across servers, so you know what you're protecting. I see the two as partners: governance decides who's allowed to be an admin, and PAM controls and records what admins do."

Red flag to avoid:

Describing PAM as just a password manager, with no mention of rotation, approval or session recording.

They may ask next:
  • Why is rotating the password after each checkout useful even if nobody misuses it?
  • Which accounts would you bring into the vault first, and why?
Say it in 60 seconds
Medium Technical round Mid-level, Senior Practice question

20. What is just-in-time privileged access, and how is it different from checking out a vaulted admin password?

What the interviewer is really testing:
Whether you understand the move towards zero standing privilege, and the trade-offs against classic vaulting.
Answer frame:

Vault checkout: the privileged account exists all the time; the tool controls who gets its password and rotates it.

Just-in-time: the privilege itself is granted for a short window, then removed automatically.

Trade-off: JIT leaves nothing powerful standing to steal but needs systems that support fast grant and removal.

Sample spoken answer:

"With vault checkout, the privileged account exists all the time with its full rights. The vault protects the password: you request it, maybe get approval, use it, and it's rotated afterwards. The risk is that the powerful account is always there, so if the vault or the account is bypassed, the privilege is ready to use. Just-in-time access removes the standing privilege itself. My normal account has no admin rights. When I need them, I request elevation for a task, it's approved or auto-approved by policy, I'm added to the admin role for, say, one hour, and then the role is taken away automatically. Cloud platforms support this well with role activation. The goal is zero standing privilege: most of the time nobody holds admin at all. I'd use JIT wherever the platform supports it, and keep vaulting for shared accounts like root, local administrator and old systems that can't grant rights on demand."

Red flag to avoid:

Saying the two are the same thing, or that just-in-time means the password is only valid for a short time.

They may ask next:
  • What would you log for each just-in-time elevation so an investigator can use it later?
  • How do you stop just-in-time requests turning into rubber-stamp approvals?
Say it in 60 seconds
Hard Technical round Mid-level, Senior Practice question

21. In a CyberArk deployment, what do the Vault, PVWA, CPM and PSM each do, and how do they work together in one admin session?

What the interviewer is really testing:
Whether you have worked with the product's architecture, not just heard of it, and can trace one privileged session through it.
Answer frame:

Vault: the hardened store for credentials, organised into safes with their own permissions.

PVWA: the web interface where users find accounts, request access and connect.

CPM and PSM: the CPM changes and verifies passwords on target systems; the PSM brokers and records sessions.

Sample spoken answer:

"The Digital Vault is the core. It's a hardened server that stores the credentials, grouped into safes, and each safe has its own members and permissions. PVWA, the Password Vault Web Access, is the web interface. Admins log in there, find the account they need, and request or use it. The CPM, the Central Policy Manager, is the piece that talks to target systems. It changes passwords on a schedule or after use, according to the platform policy for that account type, and it verifies and reconciles them if they drift. PSM, the Privileged Session Manager, is the jump point. So in one session, I log in to PVWA, pick a server account, and click connect. PSM opens the session to the target, injects the password from the vault so I never see it, and records everything. When I'm done, CPM can rotate that password, so even a leaked copy is useless."

Red flag to avoid:

Mixing up the components, for example saying PSM rotates passwords or that the vault connects to target servers itself.

They may ask next:
  • What would you check first if CPM keeps failing to change the password on a group of servers?
  • How would you design safes so that one team can't see another team's accounts?
Say it in 60 seconds
Easy Behavioral round Fresher, Mid-level Practice question

22. Tell me about a time you had to push back on an access request from someone senior. How did you handle it?

What the interviewer is really testing:
Whether you can hold an access policy under pressure while still solving the person's real need.
Answer frame:

Request: who asked, what for, and why it broke policy.

Approach: find the real need and offer a safer way to meet it.

Outcome: what was agreed, and who formally accepted any remaining risk.

Sample spoken answer:

"At my last company, a senior finance director asked for permanent admin rights on the production accounting system, because reports from the IT team were slow. Giving that would have created a separation-of-duties conflict with his approval rights, and it broke our admin policy. I didn't just say no. I asked what he was actually trying to do, and it turned out he needed to run two specific reports on demand. So I worked with the app team to give him a read-only reporting role that covered exactly those, which he had the same afternoon. He was still a bit annoyed at first, so I explained the conflict in plain terms: if he could both change and approve, an auditor would flag it against him personally. He accepted that. I recorded the decision in the request so the reasoning was there for the next review."

Red flag to avoid:

Granting the access because the person was senior, or refusing flatly without looking for the real need.

They may ask next:
  • What would you have done if he had gone over your head to your manager?
  • When is it acceptable to grant access that breaks policy?
Say it in 60 seconds

SailPoint 6 questions

Easy Technical round Fresher, Mid-level Practice question

23. What is the difference between SailPoint IdentityIQ and IdentityNow, and how does that change your day-to-day work?

What the interviewer is really testing:
Whether you know the deployment model of each product and what it means for customisation, upgrades and connectivity.
Answer frame:

IdentityIQ: software the customer installs and runs, a Java web application with its own database.

IdentityNow: a multi-tenant SaaS service; newer material calls it Identity Security Cloud.

Day to day: IIQ gives deep code-level customisation; the SaaS side leans on configuration and transforms, with a virtual appliance reaching on-premises systems.

Sample spoken answer:

"IdentityIQ is the product the customer installs and runs themselves, on their own servers or their own cloud. It's a Java web application with its own database, and you customise it heavily with rules, custom workflows and config objects. That means you also own upgrades, patching and performance. IdentityNow is SailPoint's SaaS offering, which newer material calls Identity Security Cloud. SailPoint runs the platform and upgrades it for you. To reach systems inside your network, you run a virtual appliance that the connectors work through. Customisation is more configuration-led: you shape attributes with transforms, use the APIs, and custom rules are more restricted than in IIQ, with cloud rules reviewed by SailPoint before they're deployed. So on IIQ, a lot of my day is BeanShell rules, workflows and deployments between environments. On the SaaS side it's more configuration, transforms and API integrations, with less code but less freedom."

Red flag to avoid:

Saying the two are the same product with different licences, or not knowing which one runs as SaaS.

They may ask next:
  • What would push a company to stay on IdentityIQ instead of moving to the SaaS product?
  • What does the virtual appliance need network access to?
Say it in 60 seconds
Medium Technical round Fresher, Mid-level Practice question

24. In SailPoint, what are account aggregation and correlation, and what does it mean when an account shows up as uncorrelated?

What the interviewer is really testing:
Whether you understand how accounts from target systems get tied to people, which is the base of every review and every leaver.
Answer frame:

Identity vs account: an identity is the person, built from the authoritative source; accounts are what they hold in each application.

Aggregation: reading accounts and their entitlements from a source through a connector.

Correlation: matching each account to an identity by an attribute, like employee ID; no match means uncorrelated, so no owner.

Sample spoken answer:

"In SailPoint, an identity is the person. It's built from the authoritative source, usually HR, through aggregation of that source. The accounts that person holds in each application, like their directory account or their database login, are separate objects linked to the identity. Aggregation is the task that reads accounts and their entitlements from an application through its connector. Correlation is the matching step: for each account, SailPoint tries to find which identity owns it, usually by an attribute like employee ID or email, using correlation configuration or a correlation rule for trickier logic. When an account matches nothing, it's uncorrelated. That matters a lot. An uncorrelated account has no owner, so it won't show up in a manager's review and won't be disabled when anyone leaves. So I treat the uncorrelated list as a work queue: fix the matching logic, link genuine accounts, and chase the rest as possible orphans."

Red flag to avoid:

Not being able to explain what happens to an account that matches no identity.

They may ask next:
  • Why is matching on display name a bad correlation key?
  • What does an identity refresh do after aggregation has run?
Say it in 60 seconds
Hard Coding round Mid-level, Senior Practice question

25. Write or describe an IdentityIQ correlation rule that links accounts to identities by employee number, and tell me what can go wrong with it.

What the interviewer is really testing:
Whether you have written IIQ rules and know how a correlation rule returns its answer, plus the data problems that break matching.
Answer frame:

Input: the rule receives the account being aggregated as a resource object and reads attributes from it.

Output: it returns a map naming the identity attribute and the value to match, or an empty map for no match.

Risks: blank or reused IDs, formatting differences like leading zeros, and a non-unique match attribute.

Sample spoken answer:

"A correlation rule runs for each account during aggregation. It gets the account as a resource object, and it returns a map telling IdentityIQ how to find the owner. Here I read the employee number from the account, clean it, and return the identity attribute name and value to search on. If there's no number, I return an empty map, so the account stays uncorrelated instead of being matched wrongly. What goes wrong is mostly data. Some systems store the number with leading zeros and HR doesn't. Test and admin accounts have no number. And if the identity attribute isn't unique, for example an ID reused after a rehire, the match can land on the wrong person, which is worse than no match. So I normalise formats, make sure the identity attribute is searchable and unique, and check the uncorrelated count after every change."

Code:
// IdentityIQ correlation rule (BeanShell). 'account' is the ResourceObject being aggregated.
import java.util.HashMap;
import java.util.Map;

Map result = new HashMap();
String empNo = account.getStringAttribute("employeeNumber");
if (empNo != null && empNo.trim().length() > 0) {
    // strip leading zeros so "000123" matches "123" from HR
    String clean = empNo.trim().replaceFirst("^0+(?!$)", "");
    result.put("identityAttributeName", "employeeId");
    result.put("identityAttributeValue", clean);
}
return result; // empty map = leave the account uncorrelated
Red flag to avoid:

Forcing a match on a weak attribute like first and last name, so accounts get linked to the wrong people.

They may ask next:
  • Could you do this match without a rule at all, and when would you still need one?
  • How would you test the rule safely before running it against production data?
Say it in 60 seconds
Hard Technical round Mid-level, Senior Practice question

26. In IdentityIQ, how does a termination in the HR feed turn into accounts being disabled on target systems? Trace it end to end.

What the interviewer is really testing:
Whether you know how aggregation, refresh, lifecycle events, workflows and provisioning connect, which is what you debug when a leaver is missed.
Answer frame:

Detect: HR aggregation updates the identity; the identity refresh with event processing sees the status change.

Trigger: a leaver lifecycle event matches that change and launches its workflow.

Provision: the workflow builds a provisioning plan; connected apps are changed through connectors, disconnected apps get manual work items.

Sample spoken answer:

"It starts with the HR aggregation. The HR record now shows the person as terminated, so the identity's status attribute changes. Next, the identity refresh task runs with event processing turned on. It compares the identity with the snapshot saved at the last refresh, and a lifecycle event configured as the leaver trigger, say status changed from active to inactive, matches. That event launches its workflow. The workflow builds a provisioning plan: disable the directory account, remove entitlements, maybe move the account to a disabled container. IdentityIQ's provisioning engine compiles that plan into a project and splits it by application. For applications with a read-write connector, the connector makes the change directly. For disconnected applications, it creates a manual work item or a ticket for the app team. When I debug a missed leaver, I walk that same chain: did the HR data change, did refresh run with events on, did the trigger match, did the workflow fail, or did provisioning error out."

Red flag to avoid:

Saying the HR aggregation disables accounts by itself, with no mention of lifecycle events, workflows or provisioning.

They may ask next:
  • Where would you look to find out why the workflow started but the directory account was never disabled?
  • How would you handle a leaver whose termination date is set in the future?
Say it in 60 seconds
Medium Technical round Mid-level Practice question

27. An important application has no API and no connector. How do you still bring it under identity governance?

What the interviewer is really testing:
Whether you can govern disconnected applications practically, with read access for visibility and a controlled manual path for changes.
Answer frame:

Read: aggregate from a scheduled account export, a delimited file or a read-only database view.

Write: turn provisioning into manual work items or tickets for the app team, with a deadline.

Close the loop: the next aggregation proves whether the change was really made.

Sample spoken answer:

"I split it into reading and writing. For reading, almost every app can produce a list of users and their roles, even if it's a report someone runs. I'd agree a scheduled export in a fixed format, drop it somewhere secure, and aggregate it as a delimited file application, or read a view if the database is reachable. That alone gets the app into reviews and orphan checks. For writing, the identity platform can't change the app directly, so provisioning becomes a manual task. When access is approved or revoked, it creates a work item or a ticket for the app team with a due date. The important part is closing the loop. The next aggregation shows whether the change really happened, and if a revoke is still there after the deadline, it escalates. Later, if the app gets an API or supports SCIM, I'd upgrade it to a real connector."

Red flag to avoid:

Leaving the app out of governance altogether because it can't be automated.

They may ask next:
  • How would you stop someone quietly editing the export file before it is loaded?
  • What would you report to management about apps that are still disconnected?
Say it in 60 seconds
Medium Behavioral round Mid-level, Senior Practice question

28. Tell me about a time an identity job did something wrong in production, like mass-disabling accounts. What happened, and what did you change afterwards?

What the interviewer is really testing:
Whether you can own an automation failure, recover calmly, and put a guard in place so the same failure can't repeat.
Answer frame:

Incident: what failed, how you noticed, and how many people were hit.

Recovery: how you stopped it, restored access and communicated.

Prevention: the guard you added and how you tested it.

Sample spoken answer:

"At my last company, our HR feed arrived one morning with only part of the employees in it, because an upstream export had timed out. The aggregation treated the missing people as gone, and the leaver events started disabling directory accounts. The service desk called about twenty minutes later when people couldn't log in. I stopped the scheduled tasks first, so nothing else ran. Then I pulled the list of identities that had a leaver event that morning, checked it against the previous day's HR file, and re-enabled those accounts through the tool, so everything stayed logged. I sent updates to the service desk every half hour. Access was back in about two hours. Afterwards, I added a check that stops aggregation if the file is much smaller than the day before and alerts us, and I added a delay on leaver events from bulk changes. We tested it with a truncated file before it went live."

Red flag to avoid:

Blaming the HR team and stopping there, with no guard added on the identity side.

They may ask next:
  • How did you make sure no real leaver was accidentally re-enabled?
  • What threshold would you set for that check, and how would you pick it?
Say it in 60 seconds

Okta & Entra ID 2 questions

Medium Technical round Mid-level Practice question

29. What is a conditional access policy? Design one for administrators signing in to a cloud identity platform like Entra ID or Okta.

What the interviewer is really testing:
Whether you can turn a risk into concrete sign-in conditions and controls, and whether you roll it out without locking everyone out.
Answer frame:

Model: if these conditions (user, app, location, device, risk) then these controls (block, require MFA, require a managed device).

Admin policy: admin roles must use phishing-resistant MFA from a managed device; risky sign-ins are blocked.

Rollout: test in report-only mode first and exclude monitored break-glass accounts.

Sample spoken answer:

"Conditional access is a set of if-then rules evaluated at sign-in. The 'if' uses signals like who the user is, which app they're opening, their location, the device and its health, and the sign-in risk. The 'then' is a control: allow, require MFA, require a compliant or managed device, or block. In Entra ID it's literally called Conditional Access, and Okta covers the same idea with its own sign-on policies. For admins, I'd target everyone holding an admin role, across all apps, and require phishing-resistant MFA like a security key or passkey, from a managed, compliant device. Sign-ins flagged as high risk would be blocked, and admin sessions would get a shorter sign-in lifetime. For rollout, I'd run it in report-only mode first to see who would be affected. I'd exclude two emergency break-glass accounts with strong, separately stored credentials, and alert whenever they're used, so a bad policy can't lock us out."

Red flag to avoid:

Pushing a strict policy straight to enforcement for all users, with no report-only test and no emergency account.

They may ask next:
  • Why is a policy that only blocks certain countries weak on its own?
  • How do you keep break-glass accounts safe if they're excluded from the policy?
Say it in 60 seconds
Hard Technical round Mid-level, Senior Practice question

30. A company syncs on-premises Active Directory to Entra ID. Compare password hash sync, pass-through authentication and federation. Which would you pick?

What the interviewer is really testing:
Whether you understand where the password check happens in each hybrid model and the resilience and security trade-offs.
Answer frame:

Password hash sync: a hash of the password hash is synced; the cloud checks passwords itself.

Pass-through: the cloud hands the check to agents on-premises that validate against AD.

Federation: sign-in is redirected to an on-premises federation service; choice depends on resilience, policy needs and existing investment.

Sample spoken answer:

"In all three, users and groups are synced to the cloud by a sync tool like Entra Connect or Cloud Sync. What differs is where the password is checked. With password hash sync, a hash derived from the AD password hash is synced, and the cloud checks sign-ins itself. It's the simplest and it keeps working if the on-premises site is down. It also allows leaked credential detection. With pass-through authentication, the cloud sends the check to lightweight agents on-premises, which validate against AD. That keeps password checks inside the company and applies AD account states like disabled, locked out or outside logon hours straight away, but sign-in depends on those agents being up. Federation redirects sign-in to an on-premises service like AD FS. It gives full control but adds servers to run and patch, and a single point of failure. I'd normally choose password hash sync, and if policy demands one of the others, I'd still enable hash sync as a backup."

Red flag to avoid:

Saying password hash sync sends plain passwords to the cloud, or recommending federation by default with no reason.

They may ask next:
  • What happens to cloud sign-ins with pass-through authentication if every agent goes offline?
  • How would you plan moving a company from federation to password hash sync without a big outage?
Say it in 60 seconds
Were you asked something else? Share it A person checks every question before it goes on the site. No name is shown.
For the call itself

The questions above are the prep. The call has ten more.

ClapAssist is an AI interview assistant for Mac and Windows. It listens to the interview on your computer and shows you what to say, in short lines you can read while you talk. Your resume and notes are never stored on our servers. It stays out of screen share on every plan; only you can see it.

Download ClapAssist with 10 free minutes
Mac and Windows · Stays out of screen share · No card