Which value is valid for the text-transform property?
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?A . ItalicB . Line-throughC . CapitalizeD . 20pxView AnswerAnswer: C Explanation: CSS Syntax text-transform: none|capitalize|uppercase|lowercase|initial|inherit; Example Transform text in different elements: h1 {text-transform:uppercase;}...
Which JavaScript code segment should you use?
You are developing a customer web form that includes the following HTML. <label id="txtValue"X/label> Information from the web form is submitted to a web service. The web service returns the following JSON object. { "Confirmation": "1234", "FirstName": "John" } You need to display the Confirmation number from the JSON response...
Which CSS style should you use?
You are developing an HTML5 page that includes several paragraph elements. You have the following requirements: Add a drop shadow that is one inch below the text in the paragraph Set the radius of the drop shadow to five pixels You need to style the paragraphs to meet the requirements....
Which CSS3 property should you use?
You are developing a web page that will be divided into three vertical sections. The main content of the site will be placed in the center section. The two outer sections will contain advertisements. You have the following requirements: • The main content section must be set to two times...
Which value is valid for the text-transform property?
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?A . CapitalizeB . HiddenC . ItalicD . Line-throughView AnswerAnswer: A Explanation: CSS Syntax text-transform: none|capitalize|uppercase|lowercase|initial|inherit; Example Transform text in different elements: h1 {text-transform:uppercase;}...
What should you do?
You are developing an application that consumes a Windows Communication Foundation (WCF) service. The application interacts with the service by using the following code. (Line numbers are included for reference only.) You need to authenticate to the WCF service. What should you do?A . At line 11, add the following...
Which HTML should you use?
You are developing a customer web form that includes the following HTML input field. <input id="txtValue"/> If a customer enters a value in the input field, then it must be a numeric value. You need to add validation to the input field. Which HTML should you use?A . <input id="txtValue"...
With which container tags should you wrap the existing markup?
You are modifying an existing web page. The page is being optimized for accessibility. The current page contains the following HTML. Standards-compliant screen readers must be able to identify the links contained within the navigation structure automatically. You need to create the navigation link structure in the page. With which...
Which code segment should you use?
You are creating a JavaScript object that represents an employee. You need to extend the Employee object by adding the GetPayroll() method. You need to ensure that all future instances of the Employee object implement the GetPayroll() method. Which code segment should you use? A . Option AB . Option...
Which code segment should you use?
You are creating a web form that users will use to enter their personal information. The form includes the following HTML. You have the following requirements: • When a user enters an input box, the cell on the right must turn green. • When a user leaves an input box,...