Courseiva
Demonstrate the capabilities of Power AppseasyMultiple ChoiceObjective-mapped

PL-900 Demonstrate the capabilities of Power Apps Practice Question

Exhibit

Refer to the exhibit.

```
{
  "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "environmentName": {
      "type": "string",
      "defaultValue": "MyEnvironment"
    }
  },
  "resources": [
    {
      "type": "Microsoft.PowerApps/environments",
      "apiVersion": "2016-11-01",
      "name": "[parameters('environmentName')]",
      "location": "[resourceGroup().location]",
      "properties": {
        "environmentSku": "Production",
        "provisionDatabase": true
      }
    }
  ]
}
```

Refer to the exhibit. You deploy this ARM template to create a Power Apps environment. What will be the SKU of the created environment?

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

Production

The property 'environmentSku' is set to 'Production'. Options B, C, and D are incorrect because they do not match the value in the template.

Answer analysis

Option-by-option breakdown

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

  • Production

    Why this is correct

    The template explicitly sets environmentSku to Production.

  • Sandbox

    Why it's wrong here

    The template sets Production, not Sandbox.

  • Developer

    Why it's wrong here

    Developer SKU is not used in this template.

  • Trial

    Why it's wrong here

    The template specifies Production, not Trial.

About these practice questions

One of 904 original PL-900 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This PL-900 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 PL-900 exam.