Exam 70-583 : Designing and Developing Windows Azure Applications Part – 2

Question: In SQL Azure, a business edition database can have a MAXSIZE value of

  1. 10 GB, 20 GB, 30 GB, 40 GB, or 50 GB.
  2. 10 GB or 50 GB
  3. 10 GB or 100 TB
  4. 1 GB, 10 GB or 50 GB
  5. 5GB, 50 GB

Correct Answer: 1


Question: Which of the following is the initial deployment unit for the application pieces developers provide for windows azure?

  1. Account in enivornment
  2. Hosted Service
  3. Deployment Package
  4. Configuration Package

Correct Answer: 2


Question: A table is an entity storage medium where each entity must have the following minimum properties

  1. Partition Key and Row Key
  2. Partition Key and Timestamp
  3. RowKey and Timestamp
  4. Partition Key, RowKey and Timestamp
  5. Only Partition Key

Correct Answer: 4


Question: According to OOPs, a role is similar to a

  1. Class
  2. Object
  3. Interface
  4. Delegate
  5. Struct

Correct Answer: 1


Question: Study following code snippet and choose the right option when considering the application is deployed on Windows Azure Code Snippet 1 :[code] if (Session[“culture”].ToString() == “en-US”) { //Set language to english } else if (Session[“culture”].ToString() == “fr-FR”) { //Set language to French } [/code] Code Snippet 2:[code] var culture = Session[“culture”].ToString(); var culture = Session[“culture”].ToString(); if (culture == “en-US”) { //set language to English } else if (culture == “fr-FR”) { //Set language to French }[/code]

  1. Code Snippet 1 costs more than Code Snippet 2
  2. Code Snippet 2 costs more than Code Snippet 2
  3. Both Code Snippet 1 and Code Snippet 2 costs the same
  4. Windows Azure cost depends on the number of hours application is hosted and not on the code details.

Correct Answer: 1

Tagged , . Bookmark the permalink.

Leave a Reply