70-487 Developing Windows Azure and Web Services

Loading demo links...

Showing 10–12 of 15 questions

Question 10 (Case Study 3)

You need to create an OData filter expression that returns bools that match the following characteristics: Published after 1/1/2000 Have “Science” as the first word

Which filter statement should you use?

Select an option, then click Submit answer.

  • /books?$filter=PublishDate gt datetime’2000-1-1’ and startswith(Title, ‘Science’)

  • /books?$filter=PublishDate greaterthan datetime’2000-1-1’ and startswith(Title, ‘Science’)

  • /search?$filter=PublishDate greaterthan datetime’2000-1-1’ and beginswith (Title, ‘Science’)

  • /search?$filter=PublishDate gt datetime’2000-1-1’ and beginswith(Title, ‘Science’)

Question 11 (Mixed Questions)

You are developing a WCF service.

A new service instance must be created for each client session.

You need to choose an instancing mode.

Which instance mode should you use?

Select an option, then click Submit answer.

  • PerCall

  • Single

  • Multiple

  • PerSession

  • PerRequest

Question 12 (Mixed Questions)

You are deploying an ASP.NET Core API application to an Azure App Services Docker container instance.

When customers access the application, secret keys are generated so that users can access to the data that they need. Security keys must expire after one hour. All key usage must be logged.

You need to store the customer secret keys.

Which storage option should you use?

NOTE: Each correct selection is worth one point.

Select an option, then click Submit answer.

  • Encrypted in Azure SQL with a manual audit trail and a key rotation algorithm

  • Environment variables with an audit trail stored in Azure Blob Storage

  • Inside the Docker container using system logs for auditing

  • Azure Key Vault with key rotation and auditing