Question 581 of 975

Quick Answer

The correct combination of controls enforced is MFA, terms of use acceptance, sign-in frequency of 1 hour, and persistent browser never. This is because the Conditional Access policy JSON explicitly defines grant controls requiring multi-factor authentication and terms of use acceptance, while the session controls section sets the sign-in frequency to 3600 seconds (1 hour) and the persistent browser limit to “never.” On the MS-102 exam, interpreting JSON for grant and session controls tests your ability to read the raw policy structure rather than relying on the Azure portal interface, and a common trap is confusing the “sessionControls” block with the “grantControls” block—remember that grant controls enforce what must happen before access is allowed, while session controls govern behavior after authentication. A useful memory tip is “Grants get you in, sessions set the rules once you’re in,” so always check both sections of the JSON to avoid missing either MFA or session frequency settings.

MS-102 Practice Question: Implement and manage Microsoft Entra identity and access

This MS-102 practice question tests your understanding of implement and manage microsoft entra identity and access. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Exhibit

{
  "conditions": {
    "users": {
      "includeUsers": ["All"]
    },
    "applications": {
      "includeApplications": ["All"]
    },
    "locations": {
      "includeLocations": ["AllTrusted"]
    },
    "clientAppTypes": ["browser", "mobileAppsAndDesktopClients"]
  },
  "grantControls": {
    "builtInControls": ["mfa"],
    "termsOfUse": ["termsOfUseId1"]
  },
  "sessionControls": {
    "signInFrequency": {
      "value": 1,
      "type": "hours"
    },
    "persistentBrowser": {
      "mode": "never"
    }
  }
}

Refer to the exhibit. The conditional access policy JSON shown above is applied to all users. A user authenticates from a trusted location and wants to access a cloud app. Which combination of controls will be enforced?

Question 1hardmultiple choice
Read the full NAT/PAT explanation →

Exhibit

{
  "conditions": {
    "users": {
      "includeUsers": ["All"]
    },
    "applications": {
      "includeApplications": ["All"]
    },
    "locations": {
      "includeLocations": ["AllTrusted"]
    },
    "clientAppTypes": ["browser", "mobileAppsAndDesktopClients"]
  },
  "grantControls": {
    "builtInControls": ["mfa"],
    "termsOfUse": ["termsOfUseId1"]
  },
  "sessionControls": {
    "signInFrequency": {
      "value": 1,
      "type": "hours"
    },
    "persistentBrowser": {
      "mode": "never"
    }
  }
}

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

MFA, terms of use acceptance, sign-in frequency of 1 hour, and persistent browser never

Option A is correct because the policy requires MFA and acceptance of terms of use, and session controls enforce sign-in frequency of 1 hour and persistent browser never. Option B is wrong because it omits session controls. Option C is wrong because it omits terms of use. Option D is wrong because it omits MFA.

Key principle: NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • MFA, terms of use acceptance, sign-in frequency of 1 hour, and persistent browser never

    Why this is correct

    The policy includes all these controls.

    Related concept

    Static NAT maps one inside address to one outside address.

  • Terms of use acceptance and persistent browser never only

    Why it's wrong here

    MFA is also required.

  • MFA and terms of use acceptance only

    Why it's wrong here

    Session controls are also enforced.

  • MFA and sign-in frequency of 1 hour only

    Why it's wrong here

    Terms of use acceptance is also required.

Common exam traps

Common exam trap: NAT rules depend on direction and matching traffic

NAT is not only about the public address. The inside/outside interface roles and the ACL or rule that matches traffic are just as important.

Detailed technical explanation

How to think about this question

NAT questions usually test address translation, overload/PAT behaviour, static mappings and whether the right traffic is being translated. Read the interface direction and address terms carefully.

KKey Concepts to Remember

  • Static NAT maps one inside address to one outside address.
  • PAT allows many inside hosts to share one public address using ports.
  • Inside local and inside global describe the private and translated addresses.
  • NAT ACLs identify traffic for translation, not always security filtering.

TExam Day Tips

  • Identify inside and outside interfaces first.
  • Check whether the scenario needs static NAT, dynamic NAT or PAT.
  • Do not confuse NAT matching ACLs with normal packet-filtering intent.

Key takeaway

NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.

Real-world example

How this comes up in practice

A company's IT admin needs to give a contractor read-only access to production logs without sharing account credentials. Using role-based access control (RBAC) and temporary scoped permissions — not a permanent shared password — is the correct pattern. Questions like this test whether you can apply least-privilege access across cloud identity services.

What to study next

Got this wrong? Here's your next step.

Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related MS-102 NAT questions on configuration and troubleshooting.

Related practice questions

Related MS-102 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free MS-102 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this MS-102 question test?

Implement and manage Microsoft Entra identity and access — This question tests Implement and manage Microsoft Entra identity and access — Static NAT maps one inside address to one outside address..

What is the correct answer to this question?

The correct answer is: MFA, terms of use acceptance, sign-in frequency of 1 hour, and persistent browser never — Option A is correct because the policy requires MFA and acceptance of terms of use, and session controls enforce sign-in frequency of 1 hour and persistent browser never. Option B is wrong because it omits session controls. Option C is wrong because it omits terms of use. Option D is wrong because it omits MFA.

What should I do if I get this MS-102 question wrong?

Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related MS-102 NAT questions on configuration and troubleshooting.

What is the key concept behind this question?

Static NAT maps one inside address to one outside address.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

3 more ways this is tested on MS-102

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. You are reviewing a Conditional Access policy in JSON format. The policy is applied to all users accessing Office 365 from trusted locations. What is the intended behavior of this policy?

medium
  • A.Users are blocked if they are not using a compliant device
  • B.Users must provide MFA and use a compliant device
  • C.Users only need to provide MFA regardless of device
  • D.Users must provide MFA or use a compliant device

Why D: The policy grants access when users are in a trusted location and either provide MFA or use a compliant device. The 'OR' condition between MFA and device compliance means that satisfying either requirement is sufficient, not both. This is the standard behavior when multiple controls are assigned with 'Require one of the selected controls' in Conditional Access.

Variation 2. You are reviewing a Conditional Access session control configuration in Microsoft Entra ID. Based on the exhibit, what is the expected behavior when a user signs in?

hard
  • A.The user is blocked from accessing the application unless they have a compliant device.
  • B.The user is prompted to reauthenticate every hour.
  • C.The user must reauthenticate every time they access the application, and session monitoring is enabled.
  • D.The session is not monitored because cloud app security is null.

Why C: The sign-in frequency is set to 'EveryTime', so the user must reauthenticate every time. The cloud app security is set to monitor only, so session monitoring is enabled but not enforced. Option B is wrong because the session is not blocked. Option C is wrong because frequency is every time, not every hour. Option D is wrong because cloud app security is explicitly enabled.

Variation 3. Refer to the exhibit. You have created a conditional access policy as shown. Users report that they can still access cloud apps from non-compliant devices. What is the most likely reason?

medium
  • A.The policy does not exclude specific users
  • B.The policy does not include all cloud apps
  • C.The grant control operator is set to "OR" with only one control, which requires no controls to be satisfied
  • D.The policy uses session controls instead of grant controls

Why C: Option C is correct because the conditional access policy's grant control is set to 'OR' with only a single control selected (e.g., 'Require device to be marked as compliant'). When the operator is 'OR' and only one control is listed, the policy effectively requires that control to be satisfied. However, if the control is not enforced due to a misconfiguration or the device not being evaluated (e.g., the device platform is not specified), the 'OR' operator with a single control can be interpreted as granting access if any control is met—but since only one exists, it still must be met. The most likely reason users can still access cloud apps from non-compliant devices is that the policy's grant control operator is set to 'OR' with only one control, which means the policy does not actually block access if the control is not satisfied; instead, it allows access because the 'OR' condition is technically satisfied by the absence of a second control to fail against. In practice, this configuration is a common misconfiguration that results in the policy being ineffective.

Keep practising

More MS-102 practice questions

Last reviewed: Jun 21, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This MS-102 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the MS-102 exam.