70-533 Premium Bundle

70-533 Premium Bundle

Implementing Microsoft Azure Infrastructure Solutions Certification Exam

4.5 
(6180 ratings)
0 QuestionsPractice Tests
0 PDFPrint version
November 21, 2024Last update

Microsoft 70-533 Free Practice Questions

Q1. DRAG DROP 

You publish a multi-tenant application named MyApp to Azure Active Directory (Azure AD). 

You need to ensure that only directory administrators from the other organizations can access MyApp's web API. 

How should you configure MyApp's manifest JSON file? To answer, drag the appropriate PowerShell command to the correct location in the application's manifest JSON file. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. 

Answer:  

Q2. HOTSPOT 

You create a virtual network named fabVNet01. 

You design the virtual network to include two subnets, one named DNS-subnet and one named Apps-subnet, as shown in the exhibit. (Click the Exhibits button.) 

In the table below, identify the number of IP addresses that will be available for virtual machines (VMs) or cloud services in each subnet. Make only one selection in each column. 

Answer:  

Q3. DRAG DROP 

You manage an Azure Web Site named salessite1. You notice some performance issues with salessite1. You create a new database for salessite1. 

You need to update salessite1 with the following changes, in the order shown: 

1. Display the list of current connection strings. 

2. Create a new connection string named conn1 with a value of: Server=tcp:samplel.database.windows.net,1433;Database=NewDB;User 

ID=User@samplel;Password=Passwordl;Trusted_Connection=False;Encrypt=True;Connec tion Timeout=30;. 

3. Download the application logs for analysis. 

Which three xplat-cli commands should you perform in sequence? To answer, move the appropriate commands from the list of commands to the answer area and arrange them in the correct order. 

Answer:

Q4. You administer an Azure Storage account named contoso storage. The account has queue containers with logging enabled. 

You need to view all log files generated during the month of July 2014. 

Which URL should you use to access the list? 

A. 

http://contosostorage.queue.core.windows.net/$logs? restype=container&comp=list&prefix=queue/2014/07 

B. 

http://contosostorage.queue.core.windows.net/$files? restype=container&comp=list&prefix=queue/2014/07 

C. http://contosostorage.blob.core.windows.net/$files? 

restype=container&comp=list&prefix=blob/2014/07 

D. http://contosostorage.blob.core.windows.net/$logs? restype=container&comp=list&prefix=blob/2014/07 

Answer:

Explanation: http://msdn.microsoft.com/library/azure/hh343262.aspx 

Q5. DRAG DROP 

You administer a virtual machine (VM) that is deployed to Azure. The VM hosts a web service that is used by several applications. 

You need to ensure that the VM sends a notification In the event that the average response time for the web service exceeds a pre-defined response time for an hour or more. 

Which three steps 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. 

Answer:  

Q6. You administer an Azure Active Directory (Azure AD) tenant where Box is configured for: . Application Access . Password Single Sign-on An employee moves to an organizational unit that does not require access to Box through 

the Access Panel. 

You need to remove only Box from the list of applications only for this user. 

What should you do? 

A. Delete the user from the Azure AD tenant. 

B. Delete the Box Application definition from the Azure AD tenant. 

C. From the Management Portal, remove the user's assignment to the application. 

D. Disable the user's account in Windows AD. 

Answer:

Explanation: Note: Use Azure AD to manage user access, provision user accounts, and enable single sign-on with Box. Requires an existing Box subscription. 

Q7. Your company is launching a public website that allows users to stream videos. 

You upload multiple video files to an Azure storage container. 

You need to give anonymous users read access to all of the video files in the storage container. 

What should you do? 

A. Edit each blob's metadata and set the access policy to Public Blob. 

B. Edit the container metadata and set the access policy to Public Container. 

C. Move the files into a container sub-directory and set the directory access level to Public Blob. 

D. Edit the container metadata and set the access policy to Public Blob. 

Answer:

Explanation: 

By default, the container is private and can be accessed only by the account owner. To allow public read access to the blobs in the container, but not the container properties and metadata, use the "Public Blob" option. To allow full public read access for the container and blobs, use the "Public Container" option. 

Q8. You manage a cloud service that has a web application named WebRole1. WebRole1 writes error messages to the Windows Event Log. 

Users report receiving an error page with the following message: "Event 26 has occurred. Contact your system administrator." 

You need to access the WebRole1 event log. 

Which three actions should you perform? Each correct answer presents part of the solution. 

A. Enable verbose monitoring. 

B. Update the WebRole1 web.config file. 

C. Update the cloud service definition file and the service configuration file. 

D. Run the Set-AzureVMDiagnosticsExtension PowerShell cmdlet. 

E. Run the Enable-AzureWebsiteApplicationDiagnostic PowerShell cmdlet. 

F. Create a storage account. 

Answer: A,C,F 

Explanation: AF: You can monitor key performance metrics for your cloud services in the Azure Management Portal. You can set the level of monitoring to minimal and verbose for each service role, and can customize the monitoring displays. Verbose monitoring data is stored in a storage account, which you can access outside the portal. 

* The service configuration file specifies the number of role instances to deploy for each role in the service, the values of any configuration settings, and the thumbprints for any certificates associated with a role. If the service is part of a Virtual Network, configuration information for the network must be provided in the service configuration file, as well as in the virtual networking configuration file. The default extension for the service configuration file is .cscfg. 

* The service definition file defines the service model for an application. The file contains the definitions for the roles that are available to a cloud service, specifies the service endpoints, and establishes configuration settings for the service. 

URLs: 

http://azure.microsoft.com/en-us/documentation/articles/cloud-services-how-to-monitor/ http://msdn.microsoft.com/en-us/library/azure/ee758710.aspx http://msdn.microsoft.com/en-us/library/azure/ee758711.aspx 

Q9. You are migrating a local virtual machine (VM) to an Azure VM. You upload the virtual hard disk (VHD) file to Azure Blob storage as a Block Blob. 

You need to change the Block blob to a page blob. 

What should you do? 

A. Delete the Block Blob and re-upload the VHD as a page blob. 

B. Update the type of the blob programmatically by using the Azure Storage .NET SDK. 

C. Update the metadata of the current blob and set the Blob-Type key to Page. 

D. Create a new empty page blob and use the Azure Blob Copy Power Shell cmdlet to copy the current data to the new blob. 

Answer:

Explanation: * To copy the data files to Windows Azure Storage by using one of the following methods: AzCopy Tool, Put Blob (REST API) and Put Page (REST API), or Windows Azure Storage Client Library for .NET or a third-party storage explorer tool. Important: When using this new enhancement, always make sure that you create a page blob not a block blob. 

* Azure has two main files storage format: Page blob : mainly used for vhd’s (CloudPageBlob) Block Blob : for other files (CloudBlockBlob) 

ference: Move your data files to Windows Azure Storage 

http://msdn.microsoft.com/en-us/library/dn466429.aspx 

Q10. DRAG DROP 

You manage two solutions in separate Azure subscriptions. 

You need to ensure that the two solutions can communicate on a private network. 

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. 

Answer:  

Q11. DRAG DROP 

You manage an Azure virtual machine (VM) named AppVM. The application hosted on 

AppVM continuously writes small files to disk. Recently the usage of applications on AppVM has increased greatly. 

You need to improve disk performance on AppVM. 

Which Microsoft Azure Power Shell cmdlet should you use with each Power Shell command line? To answer, drag the appropriate Microsoft Azure Power Shell cmdlet to the correct location in the Power Shell code. Each Power Shell cmdlet may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. 

Answer:  

Q12. You manage a set of virtual machines (VMs) deployed to the cloud service named fabrikamVM. 

You configure auto scaling according to the following parameters: 

With an instance range of two to six instances To maintain CPU usage between 70 and 80 percent To scale up one instance at a time With a scale up wait time of 30 minutes To scale down one instance at a time With a scale down wait time of 30 minutes 

You discover the following usage pattern of a specific application: 

The application peaks very quickly, and the peak lasts for several hours. 

CPU usage stays above 90 percent for the first 1 to 1.5 hours after usage 

increases. 

After 1.5 hours, the CPU usage falls to about 75 percent until application usage 

begins to decline. 

You need to modify the auto scaling configuration to scale up faster when usage peaks. 

What are two possible ways to achieve this goal? Each correct answer presents a complete solution. 

A. Decrease the scale down wait time. 

B. Decrease the scale up wait time. 

C. Increase the number of scale up instances. 

D. Increase the scale up wait time. 

E. Increase the maximum number of instances. 

Answer: B,C 

Q13. You manage a cloud service that utilizes data encryption. 

You need to ensure that the certificate used to encrypt data can be accessed by the cloud service application. 

What should you do? 

A. Upload the certificate referenced in the application package. 

B. Deploy the certificate as part of the application package. 

C. Upload the certificate's public key referenced in the application package. 

D. Use RDP to install the certificate. 

Answer:

Explanation: The developer must deploy the public key with their application so that, when Windows Azure spins up role instances, it will match up the thumbprint in the service definition with the uploaded service certificate and deploy the private key to the role instance. The private key is intentionally non-exportable to the .pfx format, so you won’t be able to grab the private key through an RDC connection into a role instance. 

Reference: Field Note: Using Certificate-Based Encryption in Windows Azure Applications 

Q14. You administer a Microsoft Azure SQL Database database in the US Central region named contosodb. Contosodb runs on a Standard tier within the SI performance level. 

You have multiple business-critical applications that use contosodb. 

You need to ensure that you can bring contosodb back online in the event of a natural disaster in the US Central region. You want to achieve this goal with the least amount of downtime. 

Which two actions should you perform? Each correct answer presents part of the solution. 

A. Upgrade to S2 performance level. 

B. Use active geo-replication. 

C. Use automated Export. 

D. Upgrade to Premium tier. 

E. Use point in time restore. 

F. Downgrade to Basic tier. 

Answer: B,D 

Explanation: B: The Active Geo-Replication feature implements a mechanism to provide database redundancy within the same Microsoft Azure region or in different regions (geo-redundancy). One of the primary benefits of Active Geo-Replication is that it provides a database-level disaster recovery solution. Using Active Geo-Replication, you can configure a user database in the Premium service tier to replicate transactions to databases on different Microsoft Azure SQL Database servers within the same or different regions. Cross-region redundancy enables applications to recover from a permanent loss of a datacenter caused by natural disasters, catastrophic human errors, or malicious acts. 

D: Active Geo-Replication is available for databases in the Premium service tier only. 

Reference: Active Geo-Replication for Azure SQL Database 

http://msdn.microsoft.com/en-us/library/azure/dn741339.aspx 

Q15. You manage several Azure virtual machines (VMs). You create a custom image to be used by employees on the development team. 

You need to ensure that the custom image is available when you deploy new servers. 

Which Azure Power Shell cmdlet should you use? 

A. Update-AzureVMImage 

B. Add-AzureVhd 

C. Add-AzureVMImage 

D. Update-AzureDisk 

E. Add-AzureDataDisk 

Answer:

Explanation: The Add-AzureVMImage cmdlet adds an operating system image to the 

image repository. The image should be a generalized operating system image, using either 

Sysprep for Windows or, for Linux, using the appropriate tool for the distribution. 

Example 

This example adds an operating system image to the repository. 

Windows PowerShell 

C:\PS>Add-AzureVMImage -ImageName imageName -MediaLocation 

http://yourstorageaccount.blob.core.azure.com/container/sampleImage.vhd -Label 

Reference: Add-AzureVMImage 

START 70-533 EXAM