READ Free Dumps For Microsoft- 70-480
Question ID 14868 | You are developing an application that reads information from a file.
The application must:
✑ Execute a block of code if there is an error accessing the file
✑ Execute a second block of code whether or not there is an error accessing the file
You need to ensure that the error handling requirements are met.
Which three statements should you implement in sequence? (To answer, move the
appropriate statements from the list of actions to the answer area and arrange them in the
correct order.)
|
Option A |
Explanation: Explanation The fileopen statement is put within the try clause. The catch(e) will catch a fileopen error. The finally clause will be executed regardless of whether an error occurs in the try clause proceeding it
|
Correct Answer | A |
Explanation
Question ID 14869 | You are developing an HTML5 web application and are styling text.
You need to use the text-transform CSS property.
Which value is valid for the text-transform property?
|
Option A | lowercase
|
Option B | 20px
|
Option C | line-through
|
Option D | italic
|
Correct Answer | A |
Explanation Explanation: CSS Syntax text-transform: none|capitalize|uppercase|lowercase|initial|inherit; Example Transform text in different elements: h1 {text-transform:uppercase;} h2 {text-transform:capitalize;} p {text-transform:lowercase;} Reference: CSS text-transform Property http://www.w3schools.com/cssref/pr_text_text-transform.asp