A preview of 15 of the 40 questions in this set, with full explanations. Take the interactive exam above for the complete set with timer, flagging, and scoring.
Question 1Cloud Concepts
Which statement BEST describes the difference between scalability and elasticity?
A ✓Scalability is the ability to increase capacity; elasticity is doing so automatically in response to demand
BScalability is automatic; elasticity requires manual intervention
CThey are identical concepts with different names
DScalability applies only to storage; elasticity only to compute
Explanation: Scalability is the capability to grow (or shrink) resources. Elasticity is the automatic, dynamic version — scaling in response to real-time demand without human intervention. All elastic systems are scalable, but not all scalable systems are elastic.
Question 2Cloud Concepts
A software vendor wants to offer its accounting product to customers as a subscription accessed via browser, with the vendor managing all infrastructure and updates. Which model is the vendor providing to its customers?
AIaaS
BPaaS
C ✓SaaS
DHybrid cloud
Explanation: The vendor delivers finished software over the internet on subscription — the definition of SaaS from the customer's perspective. Customers manage nothing but their data and users. The vendor may build ON IaaS/PaaS, but what they provide is SaaS.
Question 3Cloud Concepts
An engineering firm runs simulation software 4 hours per month. Buying a powerful server would cost $50,000 with most capacity idle. What cloud principle makes Azure more economical here?
A ✓Paying only for compute consumed during those 4 hours per month
BCloud servers are always cheaper than physical servers
CAzure offers free compute for engineering workloads
DReserved instances reduce the upfront hardware cost
Explanation: The consumption model shines for intermittent workloads: pay for 4 hours monthly instead of owning idle hardware. Cloud isn't always cheaper — steady 24/7 workloads can favour ownership — but bursty usage is the clearest cloud economics win. Reservations suit constant, not intermittent, workloads.
Question 4Cloud Concepts
In IaaS, which of the following is the CUSTOMER responsible for?
APhysical network cabling in the datacentre
B ✓Operating system patching and application configuration
CServer hardware replacement
DDatacentre cooling systems
Explanation: In IaaS, the provider handles everything physical (buildings, hardware, host networking); the customer manages everything from the operating system upward — OS patches, middleware, runtime, applications, and data.
Question 5Cloud Concepts
A government agency requires that its cloud infrastructure be used exclusively by government organisations with shared compliance requirements. Which deployment model does this describe?
APublic cloud
BPrivate cloud
C ✓Community cloud (e.g. Azure Government)
DMulti-cloud
Explanation: A community cloud serves a specific community with shared concerns — Azure Government is the classic example, physically isolated and available only to verified government entities. Private cloud serves ONE organisation; public serves anyone.
Question 6Cloud Concepts
Which is a key benefit of the cloud's 'agility' characteristic?
A ✓Resources can be provisioned in minutes rather than the weeks required for hardware procurement
BData is automatically encrypted
CApplications never experience downtime
DCosts are always lower than on-premises
Explanation: Agility means rapid provisioning — spin up resources in minutes versus weeks of procurement, racking, and configuration. This accelerates experimentation and time-to-market. Encryption is security; zero downtime and guaranteed lower cost are not promises the cloud makes.
Question 7Cloud Concepts
After migrating to PaaS, a development team no longer performs OS patching. Under the shared responsibility model, who patches the OS, and who secures the application code?
A ✓Microsoft patches the OS; the customer secures their application code
BThe customer does both
CMicrosoft does both
DThe customer patches the OS; Microsoft secures the code
Explanation: In PaaS, the platform (including OS) is Microsoft's responsibility; the customer remains responsible for their application code, data, and identities. Responsibility for the application layer never transfers to the provider.
Question 8Cloud Concepts
What does a Service Level Agreement (SLA) define?
AThe maximum price Azure can charge per month
B ✓Microsoft's formal uptime and connectivity commitments for a service, with service credits if unmet
CThe customer's obligation to use services for a minimum term
DThe datacentre locations where services run
Explanation: An SLA is Microsoft's formal commitment to service uptime/connectivity (e.g. 99.9%), with financial service credits if breached. Composite applications have effective SLAs derived from multiplying component SLAs.
Question 9Cloud Concepts
A CTO argues against cloud adoption: 'We lose all control and Microsoft can see our data.' Which fact BEST counters this concern?
A ✓Customers retain ownership and control of their data, with encryption options where only the customer holds the keys
BMicrosoft guarantees it never stores customer data
CCloud data is safer because it cannot be encrypted
DOn-premises data is always less secure than cloud data
Explanation: Customers own their data. Azure provides customer-managed keys (via Key Vault) where Microsoft cannot decrypt content. Azure holds extensive compliance certifications for data handling. Absolutes like 'always less secure' aren't accurate arguments.
Question 10Cloud Concepts
Which scenario is the BEST fit for a private cloud?
AA startup wanting minimal upfront investment
B ✓An organisation with strict regulatory requirements needing complete control over infrastructure and data locality
CA blog with unpredictable viral traffic
DA company wanting to eliminate all IT staff
Explanation: Private cloud suits organisations needing complete infrastructure control — typically for regulation or data sovereignty — and willing to bear the cost. Startups and variable workloads favour public cloud economics; private cloud requires MORE IT capability, not less.
Question 11Azure Architecture & Services
An application deployed in one Azure region must fail over to another region during a regional disaster. Which Azure concept ensures the second region is a deliberate, distance-separated partner receiving prioritised recovery?
AAvailability sets
B ✓Region pairs
CResource groups
DEdge zones
Explanation: Azure region pairs are deliberately matched regions (like Australia East + Australia Southeast) at least 300 miles apart where possible, with sequential updates and prioritised recovery during broad outages. Availability sets protect within a datacentre, not across regions.
Question 12Azure Architecture & Services
What is a resource group in Azure?
A ✓A logical container holding related resources that share a lifecycle, permissions, and policies
BA physical cluster of servers
CA billing account for multiple subscriptions
DA group of user accounts with the same role
Explanation: A resource group is a logical container for related resources — typically deployed, managed, and deleted together. Deleting the group deletes everything inside. It's a management construct, not physical infrastructure or billing.
Question 13Azure Architecture & Services
A team needs to run Docker containers for a short-lived batch job without managing any orchestration or virtual machines. Which is the SIMPLEST Azure service for this?
AAzure Kubernetes Service
B ✓Azure Container Instances (ACI)
CAzure Virtual Machines with Docker installed
DAzure DevTest Labs
Explanation: ACI runs containers directly — no VMs to manage, no orchestrator to configure, per-second billing. It's the fastest, simplest way to run a container. AKS adds orchestration complexity suited to large multi-container applications, not single batch jobs.
Question 14Azure Architecture & Services
Which Azure service hosts web applications with built-in load balancing, auto-scaling, and support for multiple languages — without managing servers?
A ✓Azure App Service
BAzure Virtual Machines
CAzure ExpressRoute
DAzure DNS
Explanation: App Service is Azure's PaaS web hosting — deploy code in .NET, Java, Node.js, Python and more, with automatic OS management, scaling, load balancing, and deployment slots. The platform layer is fully managed.
Question 15Azure Architecture & Services
Users worldwide complain that images and videos on your site load slowly from your single Australia East deployment. Which service caches content at locations near users globally?
A ✓Azure Content Delivery Network (CDN)
BAzure Load Balancer
CExpressRoute
DAvailability Zones
Explanation: A CDN caches static content (images, video, scripts) at edge points-of-presence worldwide, serving users from nearby locations rather than the origin region. Load Balancer distributes traffic within a region; it doesn't cache globally.