Which code segment should you use?
You are developing an application that consumes an external web service that returns the latest stock rate. The application has two methods: • The getResults() method makes an AJAX web service request • The ShowRate() method displays the stock rate from the web service response You need to ensure that...
Which code segment should you use?
You are developing a customer web form that includes following HTML. <input id="txtValue"/> You need to develop the form so that customers can enter only a valid country code consisting of three English alphabet characters. Which code segment should you use? A . Option AB . Option BC . Option...
In which order will the five style sheets be applied?
DRAG DROP You are creating an application by using HTML5 and CSS3. The styles for the pages are derived from five style sheets. The styles are not being applied correctly to the pages in the application. You need to determine the order in which the style sheets will be applied...
Which three statements should you implement in sequence?
DRAG DROP 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...
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 . lowercaseB . 20pxC . line-throughD . italicView AnswerAnswer: A Explanation: CSS Syntax text-transform: none|capitalize|uppercase|lowercase|initial|inherit; Example Transform text in different elements: h1 {text-transform:uppercase;}...
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 . LowercaseB . BlinkC . Line-throughD . 20pxView AnswerAnswer: A Explanation: CSS Syntax text-transform: none|capitalize|uppercase|lowercase|initial|inherit; Reference: CSS text-transform Property
Which tag should you use?
You are modifying a blog site to improve search engine readability. You need to group relevant page content together to maximize search engine readability. Which tag should you use?A . <tbody>B . <article>C . <div>D . <span>View AnswerAnswer: B Explanation: The <article> tag specifies independent, self-contained content. An article should...
What should you do?
HOTSPOT You are developing a web application that retrieves data from a web service. The data being retrieved is a custom binary datatype named bint. The data can also be represented in XML. Two existing methods named parseXml() and parseBint() are defined on the page. The application must: • Retrieve...
Which two CSS3 styles will achieve the goal?
You are styling a box object on a page by using CSS3. You need to set the transparency of the object to 50%. Which two CSS3 styles will achieve the goal? (Each correct answer presents a complete solution. Choose two.) A . Option AB . Option BC . Option CD...
Which tag should you use?
You are modifying a blog site to improve search engine readability. You need to group relevant page content together to maximize search engine readability. Which tag should you use?A . <span>B . <nav>C . <cable>D . <section>View AnswerAnswer: D Explanation: The <section> tag defines sections in a document. Such as...