AZ-100 Exam Questions - Online Test


AZ-100 Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

certleader.com

We offers AZ-100 Dumps. "Microsoft Azure Infrastructure and Deployment", also known as AZ-100 exam, is a Microsoft Certification. This set of posts, Passing the AZ-100 exam with AZ-100 Exam Questions, will help you answer those questions. The AZ-100 Dumps covers all the knowledge points of the real exam. 100% real AZ-100 Free Practice Questions and revised by experts!

Online AZ-100 free questions and answers of New Version:

NEW QUESTION 1
You have an Azure subscription. The subscription includes a virtual network named VNet1. Currently, VNet1 does not contain any subnets.
You plan to create subnets on VNet1 and to use application security groups to restrict the traffic between the subnets. You need to create the application security groups and to assign them to the subnets.
Which four cmdlets should you run in sequence? To answer, move the appropriate cmdlets from the list of cmdlets to the answer area and arrange them in the correct order.
AZ-100 dumps exhibit

    Answer:

    Explanation: Step 1: New-AzureRmNetworkSecurityRuleConfig
    Step 2: New-AzureRmNetworkSecurityGroup
    Step 3: New-AzureRmVirtualNetworkSubnetConfig
    Step 4: New-AzureRmVirtualNetwork
    Example: Create a virtual network with a subnet referencing a network security group New-AzureRmResourceGroup -Name TestResourceGroup -Location centralus
    $rdpRule = New-AzureRmNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP" -Access Allow -Protocol Tcp -Direction Inbound -Priority 100 -SourceAddressPrefix Internet -SourcePortRange *
    -DestinationAddressPrefix * -DestinationPortRange 3389
    $networkSecurityGroup = New-AzureRmNetworkSecurityGroup -ResourceGroupName TestResourceGroup
    -Location centralus -Name "NSG-FrontEnd" -SecurityRules $rdpRule
    $frontendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name frontendSubnet -AddressPrefix "10.0.1.0/24" -NetworkSecurityGroup $networkSecurityGroup
    $backendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name backendSubnet -AddressPrefix "10.0.2.0/24" -NetworkSecurityGroup $networkSecurityGroup
    New-AzureRmVirtualNetwork -Name MyVirtualNetwork -ResourceGroupName TestResourceGroup
    -Location centralus -AddressPrefix "10.0.0.0/16" -Subnet $frontendSubnet,$backendSubnet
    References:
    https://docs.microsoft.com/en-us/powershell/module/azurerm.network/new-azurermvirtualnetwork?view=azurer

    NEW QUESTION 2
    You have an Azure Active Directory (Azure AD) tenant named adatum.com. Adatum.com contains the groups in the following table.
    AZ-100 dumps exhibit
    You create two user accounts that are configured as shown in the following table.
    AZ-100 dumps exhibit
    To which groups do User1 and User2 belong? To answer. select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
    AZ-100 dumps exhibit

      Answer:

      Explanation: Box 1: Group 1 only First rule applies
      Box 2: Group1 and Group2 only Both membership rules apply.
      References: https://docs.microsoft.com/en-us/sccm/core/clients/manage/collections/create-collections

      NEW QUESTION 3
      You need to resolve the licensing issue before you attempt to assign the license again. What should you do?

      • A. From the Groups blade, invite the user accounts to a new group.
      • B. From the Profile blade, modify the usage location.
      • C. From the Directory role blade, modify the directory role.

      Answer: B

      Explanation: License cannot be assigned to a user without a usage location specified. Scenario: Licensing Issue
      You attempt to assign a license in Azure to several users and receive the following error message: "Licenses not assigned. License agreement failed for one user."
      You verify that the Azure subscription has the available licenses.

      NEW QUESTION 4
      You need to define a custom domain name for Azure AD to support the planned infrastructure. Which domain name should you use?

      • A. Join the client computers in the Miami office to Azure AD.
      • B. Add http://autologon.microsoftazuread-sso.com to the intranet zone of each client computer in the Miami office.
      • C. Allow inbound TCP port 8080 to the domain controllers in the Miami office.
      • D. Install Azure AD Connect on a server in the Miami office and enable Pass-through Authentication
      • E. Install the Active Directory Federation Services (AD FS) role on a domain controller in the Miami office.

      Answer: BD

      Explanation: Every Azure AD directory comes with an initial domain name in the form of domainname.onmicrosoft.com. The initial domain name cannot be changed or deleted, but you can add your corporate domain name to Azure AD as well. For example, your organization probably has other domain names used to do business and users who sign in using your corporate domain name. Adding custom domain names to Azure AD allows you to assign user names in the directory that are familiar to your users, such as ‘alice@contoso.com.’ instead of 'alice@domain name.onmicrosoft.com'.
      Scenario:
      Network Infrastructure: Each office has a local data center that contains all the servers for that office. Each office has a dedicated connection to the Internet.
      Humongous Insurance has a single-domain Active Directory forest named humongousinsurance.com Planned Azure AD Infrastructure: The on-premises Active Directory domain will be synchronized to Azure
      AD.
      References: https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/add-custom-domain

      NEW QUESTION 5
      You have an Azure subscription named Subscription1.
      You have 5 TB of data that you need to transfer to Subscription. You plan to use an Azure Import/Export job.
      What can you use as the destination of the imported data?

      • A. Azure SQL Database
      • B. Azure Data Factory
      • C. A virtual machine
      • D. Azure Blob storage

      Answer: D

      Explanation: References:
      https://docs.microsoft.com/en-us/azure/storage/common/storage-import-export-service

      NEW QUESTION 6
      You plan to deploy 20 Azure virtual machines by using an Azure Resource Manager template. The virtual machines will run the latest version of Windows Server 2021 Datacenter by using an Azure Marketplace image.
      You need to complete the storageProfile section of the template.
      How should you complete the storageProfile section? To answer, select the appropriate options in the answer area.
      NOTE: Each correct selection is worth one point.
      AZ-100 dumps exhibit

        Answer:

        Explanation: … "storageProfile": {
        "imageReference": {
        "publisher": "MicrosoftWindowsServer", "offer": "WindowsServer",
        "sku": "2021-Datacenter", "version": "latest"
        },
        … References:
        https://docs.microsoft.com/en-us/rest/api/compute/virtualmachines/createorupdate

        NEW QUESTION 7
        You are planning the move of App1 to Azure. You create a network security group (NSG).
        You need to recommend a solution to provide users with access to App1. What should you recommend?

        • A. Create an outgoing security rule for port 443 from the Interne
        • B. Associate the NSG to all the subnets.
        • C. Create an incoming security rule for port 443 from the Interne
        • D. Associate the NSG to all the subnets.
        • E. Create an incoming security rule for port 443 from the Interne
        • F. Associate the NSG to the subnet that contains the web servers.
        • G. Create an outgoing security rule for port 443 from the Interne
        • H. Associate the NSG to the subnet thatcontains the web servers.

        Answer: C

        Explanation: As App1 is public-facing we need an incoming security rule, related to the access of the web servers. Scenario: You have a public-facing application named App1. App1 is comprised of the following three tiers: a SQL database, a web front end, and a processing middle tier.
        Each tier is comprised of five virtual machines. Users access the web front end by using HTTPS only.

        NEW QUESTION 8
        Your company registers a domain name of contoso.com.
        You create an Azure DNS named contoso.com and then you add an A record to the zone for a host named www that has an IP address of 131.107.1.10.
        You discover that Internet hosts are unable to resolve www.contoso.com to the 131.107.1.10 IP address. You need to resolve the name resolution issue.
        Solution: You add an NS record to the contoso.com zone. Does this meet the goal?

        • A. Yes
        • B. No

        Answer: A

        Explanation: Before you can delegate your DNS zone to Azure DNS, you need to know the name servers for your zone. The NS record set contains the names of the Azure DNS name servers assigned to the zone.
        References: https://docs.microsoft.com/en-us/azure/dns/dns-delegate-domain-azure-dns

        NEW QUESTION 9
        Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
        After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
        You have an Azure subscription named Subscription1. Subscription1 contains a resource group named RG1. RG1 contains resources that were deployed by using templates.
        You need to view the date and time when the resources were created in RG1.
        Solution: From the Subscriptions blade, you select the subscription, and then click Resource providers. Does this meet the goal?

        • A. Yes
        • B. No

        Answer: B

        NEW QUESTION 10
        Click to expand each objective. To connect to the Azure portal, type https://portal.azure.com in the browser address bar.
        AZ-100 dumps exhibit
        AZ-100 dumps exhibit
        AZ-100 dumps exhibit
        AZ-100 dumps exhibit
        AZ-100 dumps exhibit
        AZ-100 dumps exhibit
        When you are finished performing all the tasks, click the ‘Next’ button.
        Note that you cannot return to the lab once you click the ‘Next’ button. Scoring occur in the background while you complete the rest of the exam.
        Overview
        The following section of the exam is a lab. In this section, you will perform a set of tasks in a live environment. While most functionality will be available to you as it would be in a live environment, some functionality (e.g., copy and paste, ability to navigate to external websites) will not be possible by design. Scoring is based on the outcome of performing the tasks stated in the lab. In other words, it doesn’t matter how you accomplish the task, if you successfully perform it, you will earn credit for that task.
        Labs are not timed separately, and this exam may have more than one lab that you must complete. You can use as much time as you would like to complete each lab. But, you should manage your time appropriately to
        ensure that you are able to complete the lab(s) and all other sections of the exam in the time provided.
        Please note that once you submit your work by clicking the Next button within a lab, you will NOT be able to return to the lab.
        To start the lab
        You may start the lab by clicking the Next button.
        You need to create a virtual network named VNET1008 that contains three subnets named subnet0, subnet1, and subnet2. The solution must meet the following requirements:
        AZ-100 dumps exhibit Connections from any of the subnets to the Internet must be blocked.
        AZ-100 dumps exhibit Connections from the Internet to any of the subnets must be blocked.
        AZ-100 dumps exhibit The number of network security groups (NSGs) and NSG rules must be minimized.
        What should you do from the Azure portal?

          Answer:

          Explanation: Step 1: Click Create a resource in the portal.
          Step 2: Enter Virtual network in the Search the Marketplace box at the top of the New pane that appears. Click Virtual network when it appears in the search results.
          Step 3: Select Classic in the Select a deployment model box in the Virtual Network pane that appears, then click Create.
          Step 4: Enter the following values on the Create virtual network (classic) pane and then click Create: Name: VNET1008
          Address space: 10.0.0.0/16 Subnet name: subnet0 Resource group: Create new
          Subnet address range: 10.0.0.0/24
          Subscription and location: Select your subscription and location.
          Step 5: In the portal, you can create only one subnet when you create a virtual network. Click Subnets (in the SETTINGS section) on the Create virtual network (classic) pane that appears.
          Click +Add on the VNET1008 - Subnets pane that appears.
          Step 6: Enter subnet1 for Name on the Add subnet pane. Enter 10.0.1.0/24 for Address range. Click OK.
          Step 7: Create the third subnet: Click +Add on the VNET1008 - Subnets pane that appears. Enter subnet2 for Name on the Add subnet pane. Enter 10.0.2.0/24 for Address range. Click OK.
          References: https://docs.microsoft.com/en-us/azure/virtual-network/create-virtual-network-classic

          NEW QUESTION 11
          You have an Azure subscription that contains a virtual machine named VM1. VM1 hosts a line-of-business application that is available 24 hours a day. VM1 has one network interface and one managed disk. VM1 uses the D4s v3 size.
          You plan to make the following changes to VM1:
          AZ-100 dumps exhibit Change the size to D8s v3.
          AZ-100 dumps exhibit Add a 500-GB managed disk.
          AZ-100 dumps exhibit Add the Puppet Agent extension.
          AZ-100 dumps exhibit Attach an additional network interface. Which change will cause downtime for VM1?

          • A. Add a 500-GB managed disk.
          • B. Attach an additional network interface.
          • C. Add the Puppet Agent extension.
          • D. Change the size to D8s v3.

          Answer: D

          Explanation: While resizing the VM it must be in a stopped state.
          References: https://azure.microsoft.com/en-us/blog/resize-virtual-machines/

          NEW QUESTION 12
          Overview
          The following section of the exam is a lab. In this section, you will perform a set of tasks in a live environment. While most functionality will be available to you as it would be in a live environment, some functionality (e.g., copy and paste, ability to navigate to external websites) will not be possible by design.
          Scoring is based on the outcome of performing the tasks stated in the lab. In other words, it doesn’t matter how you accomplish the task, if you successfully perform it, you will earn credit for that task.
          Labs are not timed separately, and this exam may have more than one lab that you must complete. You can use as much time as you would like to complete each lab. But, you should manage your time appropriately to ensure that you are able to complete the lab(s) and all other sections of the exam in the time provided.
          Please note that once you submit your work by clicking the Next button within a lab, you will NOT be able to return to the lab.
          To start the lab
          You may start the lab by clicking the Next button.
          You plan to allow connections between the VNET01-USEA2 and VNET01-USWE2 virtual networks.
          You need to ensure that virtual machines can communicate across both virtual networks by using their private IP address. The solution must NOT require any virtual network gateways.
          What should you do from the Azure portal?

            Answer:

            Explanation: Virtual network peering enables you to seamlessly connect two Azure virtual networks. Once peered, the virtual networks appear as one, for connectivity purposes.
            Peer virtual networks
            Step 1. In the Search box at the top of the Azure portal, begin typing VNET01-USEA2. When VNET01-USEA2 appears in the search results, select it.
            Step 2. Select Peerings, under SETTINGS, and then select + Add, as shown in the following picture:
            AZ-100 dumps exhibit
            Step 3. Enter, or select, the following information, accept the defaults for the remaining settings, and then select OK.
            Name: myVirtualNetwork1-myVirtualNetwork2 (for example) Subscription: elect your subscription.
            Virtual network: VNET01-USWE2 - To select the VNET01-USWE2 virtual network, select Virtual network, then select VNET01-USWE2. You can select a virtual network in the same region or in a different region.
            Now we need to repeat steps 1-3 for the other network VNET01-USWE2:
            Step 4. In the Search box at the top of the Azure portal, begin typing VNET01- USEA2. When VNET01- USEA2 appears in the search results, select it.
            Step 5. Select Peerings, under SETTINGS, and then select + Add. References:
            https://docs.microsoft.com/en-us/azure/virtual-network/tutorial-connect-virtual-networks-portal

            NEW QUESTION 13
            Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
            After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
            You have an Azure subscription that contains 10 virtual networks. The virtual networks are hosted in separate resource groups.
            Another administrator plans to create several network security groups (NSGs) in the subscription.
            You need to ensure that when an NSG is created, it automatically blocks TCP port 8080 between the virtual networks.
            Solution: You configure a custom policy definition, and then you assign the policy to the subscription.
            Does this meet the goal?

            • A. Yes
            • B. No

            Answer: A

            Explanation: Resource policy definition used by Azure Policy enables you to establish conventions for resources in your organization by describing when the policy is enforced and what effect to take. By defining conventions, you can control costs and more easily manage your resources.
            References: https://docs.microsoft.com/en-us/azure/azure-policy/policy-definition

            NEW QUESTION 14
            You need to identify the storage requirements for Contoso.
            For each of the following statements, select Yes if the statement is true. Otherwise, select No.
            NOTE: Each correct selection is worth one point.
            AZ-100 dumps exhibit

              Answer:

              Explanation: Box 1: Yes
              Contoso is moving the existing product blueprint files to Azure Blob storage.
              Use unmanaged standard storage for the hard disks of the virtual machines. We use Page Blobs for these. Box 2: No
              Box 3: No

              NEW QUESTION 15
              You need to prepare the environment to ensure that the web administrators can deploy the web apps as quickly as possible.
              Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
              AZ-100 dumps exhibit

                Answer:

                Explanation: Step 1:
                First you create a storage account using the Azure portal. Step 2:
                Select Automation options at the bottom of the screen. The portal shows the template on the Template tab. Deploy: Deploy the Azure storage account to Azure.
                Step 3:
                Share the template.
                Scenario: Web administrators will deploy Azure web apps for the marketing department. Each web app will be added to a separate resource group. The initial configuration of the web apps will be identical. The web administrators have permission to deploy web apps to resource groups.
                References:
                https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-quickstart-create-templates-u

                NEW QUESTION 16
                You have an Azure Active Directory (Azure AD) tenant named contosocloud.onmicrosoft.com. Your company has a public DNS zone for contoso.com.
                You add contoso.com as a custom domain name to Azure AD. You need to ensure that Azure can verify the domain name. Which type of DNS record should you create?

                • A. RRSIG
                • B. PTR
                • C. DNSKEY
                • D. TXT

                Answer: D

                Explanation: Create the TXT record. App Services uses this record only at configuration time to verify that you own the custom domain. You can delete this TXT record after your custom domain is validated and configured in App Service.
                References: https://docs.microsoft.com/en-us/azure/dns/dns-web-sites-custom-domain

                NEW QUESTION 17
                You have an Azure DNS zone named adatum.com. You need to delegate a subdomain named research.adatum.com to a different DNS server in Azure. What should you do?

                • A. Create an PTR record named research in the adatum.com zone.
                • B. Create an NS record named research in the adatum.com zone.
                • C. Modify the SOA record of adatum.com.
                • D. Create an A record named “.research in the adatum.com zone.

                Answer: D

                Explanation: Configure A records for the domains and sub domains. References:
                http://www.stefanjohansson.org/2012/12/how-to-configure-custom-dns-names-for-multiple-subdomain-based-az

                NEW QUESTION 18
                You have two Azure Active Directory (Azure AD) tenants named contoso.com and fabrikam.com. You have a Microsoft account that you use to sign in to both tenants.
                You need to configure the default sign-in tenant for the Azure portal. What should you do?

                • A. From the Azure portal, configure the portal settings.
                • B. From the Azure portal, change the directory.
                • C. From Azure Cloud Shell, run Set-AzureRmContext.
                • D. From Azure Cloud Shell, run Set-AzureRmSubscription.

                Answer: B

                Explanation: Change the subscription directory in the Azure portal.
                The classic portal feature Edit Directory, that allows you to associate an existing subscription to your Azure Active Directory (AAD), is now available in Azure portal. It used to be available only to Service Admins with Microsoft accounts, but now it's available to users with AAD accounts as well.
                To get started:
                AZ-100 dumps exhibit Go to Subscriptions.
                AZ-100 dumps exhibit Select a subscription.
                AZ-100 dumps exhibit Select Change directory.

                NEW QUESTION 19
                Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
                After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
                You have an Azure virtual machine named VM1. VM1 was deployed by using a custom Azure Resource Manager template named ARM1.json.
                You receive a notification that VM1 will be affected by maintenance. You need to move VM1 to a different host immediately.
                Solution: From the Redeploy blade, you click Redeploy. Does this meet the goal?

                • A. Yes
                • B. No

                Answer: A

                Explanation: When you redeploy a VM, it moves the VM to a new node within the Azure infrastructure and then powers it back on, retaining all your configuration options and associated resources.
                References: https://docs.microsoft.com/en-us/azure/virtual-machines/windows/redeploy-to-new-node

                100% Valid and Newest Version AZ-100 Questions & Answers shared by Dumpscollection, Get Full Dumps HERE: http://www.dumpscollection.net/dumps/AZ-100/ (New 106 Q&As)