option
Cuestiones
ayuda
daypo
buscar.php

98-375 - HTML5 Application Version : v5.5

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
98-375 - HTML5 Application Version : v5.5

Descripción:
Development Fundamentals

Fecha de Creación: 2016/03/07

Categoría: Informática

Número Preguntas: 50

Valoración:(7)
COMPARTE EL TEST
Nuevo ComentarioNuevo Comentario
Comentarios
NO HAY REGISTROS
Temario:

QUESTION: 1 Which three properties can be used with the TouchEvent object in the Safari touch API? (Select three.). A. offsetTop. B. clientHeight. C. scale. D. touches. E. rotation.

QUESTION: 2 You create an instance named "ac" of an accelerometer object. Which code fragment will retrieve a single update?. A. ac = navigator.accelerometer;. B. ac = getAcceleration(accelerometerFunction);. C. ac.watchAcceleration(accelerometerFunction);. D. ac.clear(watchid);.

QUESTION: 3 Which three technologies does HTML5 encompass? (Select three.). A. CSS. B. ASP.NET. C. C#. D. JavaScript. E. HTML.

QUESTION: 4 Which CSS property defines which sides of an element where other floating elements are not allowed?. A. float. B. position. C. display. D. clear.

QUESTION: 5 What is the default value of the CSS position property?. A. fixed. B. absolute. C. static. D. relative.

QUESTION: 6 DRAG DROP Match the CSS terms to the corresponding CSS code examples. (To answer, drag the appropriate CSS term from the column on the left to its CSS code example on the right. Each CSS term may be used once, more than once, or not at all.). comment. pseudo-class. attribute selector. universal selector. element type selector.

QUESTION: 7 When applied to an image, the CSS float:right property: A. positions the image to the left and displays all of the text to the right of the image. B. positions the image to the right of the region and wraps text around the top, left, and bottom. C. positions the image to the left of the region and wraps text around the top, right, and bottom. D. positions the image to the right and wraps text to the top and bottom.

QUESTION: 8 Which HTML5 tag is used to mark text that has been added to the original document?. A. <" q>. B. <" pre>. C. <" ins>. D. <" i>.

QUESTION: 9 Which HTML5 code fragment shows a way to validate numeric input as having a value from 1 to 100, inclusive?. A. <"--- input type="num" min="1" max="100">. B. <"--- input type="positive" limit="100">. C. <"--- input type="number" low="1" high="100">. D. <"--- input type="number" min="1" max="100">.

QUESTION: 10 When you are working with the path API, what is the purpose of the clip method?. A. pastes a shape object in from the system clipboard. B. constrains the rendered output of the shape object. C. copies the shape object to the system clipboard. D. stores the shape object for later reference in script.

QUESTION: 11 DRAG DROP Match the HTML5 elements to the corresponding functions. (To answer, drag the appropriate HTML5 element from the column on the left to its function on the right. Each HTML5 element may be used once, more than once, or not at all.). COLGROUP. FIELDSET. OPT GROUP. TH. THEAD.

QUESTION: 12 Which term describes the canvas API?. A. xml-based. B. vector-based. C. retained-mode. D. immediate-mode.

QUESTION: 13 An HTML5 application can run without an Internet connection if: A. the application is converted to an executable. B. the .NET Framework is installed on the client computer. C. the application specifies the use of a client-side SQL database. D. the application specifies the use of an ApplicationCache interface.

QUESTION: 14 Which CSS3 code fragment rounds the corners of a border?. A. border-image: 50px;. B. border-clip: 50px concave;. C. border-radius: 50px;. D. border-clip: 50px;.

QUESTION: 15 The data in a specific HTML5 local storage database can be accessed from: A. Different browsers on the same device. B. Different browsers on different devices. C. The same browser on different devices. D. The same browser on the same device.

QUESTION: 16 Which code fragment will display an image file while the video is downloading?. A. <"--- video width="740" height="416" src="fireworks.jpg">. B. <"--- video width="740" height="416" poster="fireworks.jpg">. C. <"--- video width="740" height="416" autoplay="autoplay">. D. <"--- video width="740" height="416" preload="fireworks.jpg">.

QUESTION: 17 You create an interface for a touch-enabled application. During testing you discover that some touches trigger multiple input areas. Which situation will cause this problem?. A. The touch screen is not calibrated. B. The input areas are too close together. C. The defined input areas are too small. D. The input areas are semi-transparent.

QUESTION: 18 What value does the following JavaScript code fragment store into the variable num? varnum = localStorage.length;. A. maximum length of a character string. B. potential capacity of local storage. C. number of bytes available in local storage. D. number of key-value pairs in local storage.

QUESTION: 19 Which three event attributes are used with the CAPTION element in HTML5? (Select three.). A. onmouseover. B. ondblclick. C. onkeydown. D. onconnect. E. onabort.

QUESTION: 20 DRAG DROP Match the JavaScript code fragments with the HTML5 local storage functions. (To answer, drag the appropriate code fragment from the column on the left to its local storage function on the right. Each code fragment may be used once, more than once, or not at all). localStorage.key(0);. localstorage:clear();. localStorage.getItem("name");. localStorage.removeItem("name");. localStorage.setItem("name", nameData);.

QUESTION: 21 Which three code fragments define an HTML input control? (Select three.). A. <"--- input type = "combobox" >. B. <"--- input type = "optionbutton" >. C. <"--- input type = "url" >. D. <"--- input type = "tel" >. E. <"--- input type = "search" >.

QUESTION: 22 Which element should you use to rotate an SVG square?. A. path. B. ANIMATETRANSFORM. C. ANIMATEMOTION. D. AREA SHAPE.

QUESTION: 23 Which two terms represent interfaces in the File API? (Select two.). A. Font. B. Blob. C. Keygen. D. FileList.

QUESTION: 24 Which two are WebSocket events? (Select two.). A. onconnect. B. onmessage. C. ondatareceived. D. onopen.

QUESTION: 25 Your code includes the following fragment: <input type="text" name="text1" id="myText" /> You need to add code that will retrieve the contents of the INPUT element. Which JavaScript code fragment will accomplish this?. A. vartxtContents =document.getElementById('text1').value;. B. vartxtContents = document.getEIementyById('myText').value;. C. vartxtContents =document.getElementById('text1');. D. vartxtContents = document.getElementById('myText');.

QUESTION: 26 Which two outcomes will this code fragment accomplish? (Each correct answer presents a complete solution. Select two.) <audio src="happy.wav" controls="controls">hello World</audio>. A. On pre-HTML5 browsers, the happy.wav file will not play, and instead Hello World will be displayed. B. On an HTML5 browser that supports .wav files, the happy.wav file will be played and Hello World will be hidden. C. On an HTML5 browser that supports .wav files, the happy.wav file will be played and Hello World will be displayed. D. on pre-HTMLS browsers, the happy.wav file will play and Hello World will be hidden.

QUESTION: 27 Which JavaScript method allows you to register multiple handlers for a single touch event?. A. dispatchEvent. B. initUIEvent. C. addEventListener. D. initEvent.

QUESTION: 28 Which two semantic tags are used to define layouts in HTML5? (Select two.). A. <" footer>. B. <" head>. C. <" progress:>. D. <" section>.

QUESTION: 29 In CSS, the flow-into property deposits: A. the flow into the content. B. the regions into a flow. C. the flow into the regions. D. content into the flow.

QUESTION: 30 Which two code segments declare JavaScript functions? (Select two.). A. varfunct= (a);. B. function Foo(a){ … }. C. var a=new Foo();. D. Foo=function(a){ ...}.

QUESTION: 31 You need to retrieve a value from local storage by using the key "aardvark." Which code fragment should you use?. A. var value=localStorage.getItem("aardvark");. B. var value=localStorage.key("aardvark");. C. var value=localStorage.setItem("aardvark");. D. localStorage.setItem("aardvark",value);.

QUESTION: 32 Which two tags are used with the HTML5 TABLE element? (Select two.). A. <" body>. B. <" tfoot>. C. <" td>. D. <" head>.

QUESTION: 33 You need to ensure the scope of a variable named j is limited to the block of a single function named foo(). Which JavaScript code fragment will accomplish this?. A. function foo(){ var j; ... }. B. var j; function foo(){ ... }. C. j=0; function foo(){ ... }. D. function foo(){ j=0; ... }.

QUESTION: 34 You write the following JavaScript code. (Line numbers are included for reference only.) 01<script> 02... 03BestStudent=new Student ("David Hamilton"); 04document.write(bestStudent.fullname + "is registrred."); 05</script> You need to write a function that will initialize and encapsulate the member variable full name. Which are two possible code fragments you could insert at line 02 to achieve this goal? (Each correct answer presents a complete solution. Select two.). A. function Student(someName){ fullname=someName; }. B. function Student(someName){ this.fullname=someName; }. C. function Student(fullname){ this.fullname=fullname; }. D. function Student(someName){ var fullname=someName; }.

QUESTION: 35 When content from a flow is loaded into a region, overflowed content: A. attempts to fit into the region by auto-adjusting the styles. B. continues into the next region. C. is truncated and an error flag is set. D. is buffered for download.

QUESTION: 36 When you are using the GeoLocation API, which two arguments does the getCurrentPosition function utilize? (Select two.). A. success callback. B. MAC address. C. browser type. D. ip address. E. failure callback.

QUESTION: 37 Which CSS3 code fragment will style only the external links in an HTML document?. A. a[href$="http://""]{ font-weight:bold; }. B. a:visited{ font-weight:bold; }. C. a{ font-weight:bold; }. D. a[href^="http://""]{ font-weight:bold; }.

QUESTION: 38 Web Workers define an API for: A. Publishing frequently updated works for syndication. B. Running scripts in the background,. C. Bi-directional, full-duplex communications over a single TCP socket. D. Distributing load across multiple web servers.

QUESTION: 39 Which two HTML properties can JavaScript access to change the text value of an HTML element? (Select two.). A. innerHTML. B. nodeType. C. title. D. nodeValue.

QUESTION: 40 Which layout can you create by using a single CSS3 region?. A. a table layout. B. a snaked-column layout. C. a multiple column liquid layout. D. a multiple column fixed layout.

QUESTION: 41 You add script tags to an HTML page. You need to update the text value within a specific HTML element. You access the HTML element by id. What should you do next?. A. Use the createTextNode method. B. Use the appendChild method. C. Set the new text value with the setAttribute method. D. Use the firstChild property and set the new text value with the nodeValue property.

QUESTION: 42 Which attribute prefills a default value for an input element in HTML5?. A. name. B. placeholder. C. autocomplete. D. required.

QUESTION: 43 Which code fragment will display the Play and Pause controls in the audio interface?. A. <"- audio controls="controls">. B. <"- audio preload="controls">. C. <"- audio preload="auto">. D. <"- audio autoplay="autoplay">.

QUESTION: 44 DRAG DROP Match the HTML5 input attributes to the corresponding descriptions. (To answer, drag the appropriate attribute from the column on the left to its description on the right. Each attribute may be used once, more than once, or not at all.). maxiength. multiple. pattern. placeholder. required.

QUESTION: 45 You create an interface for a touch-enabled application. You discover that some of the input buttons do not trigger when you tap the screen. You need to identify the cause of the problem. What are two possible causes? (Select two.). A. The input areas overlap with other input areas. B. The touch screen is not initialized. C. The input areas are using event handlers to detect input. D. The defined input areas are not large enough.

QUESTION: 46 Which three generic font family names are valid values of the font-family property in CSS?(Select three.). A. cursive. B. system. C. serif. D. fixed. E. fantasy.

QUESTION: 47 The variable named "ctx" is the context of an HTML5 canvas object. What does the following code fragment draw? ctx.arc(x, y, r, 0, Math.PI, true);. A. a circle at the given point. B. a square at the given point. C. a semi-circle at the given point. D. a line from one point to another.

QUESTION: 48 You create an instance named "location" of a geolocation object. Which code fragment will initiate periodic updates of a device's geographic location?. A. location = navigator.geolocation;. B. location.watchPosition(showLocation);. C. location.getCurrentPosition(showLocation);. D. location.clearNatch(watchid);.

QUESTION: 49 DRAG DROP Match the CSS position property values to the corresponding descriptions. (To answer, drag each value from the column on the left to its description on the right. Each value may be used once, more than once, or not at all.). fixed. static. inherit. relative. absolute.

QUESTION: 50 Which tag is used to create a drop-down list in HTML5?. A. <" ul>. B. <" select>. C. <" datalist>. D. <" dd>.

Denunciar Test