Cuestiones
ayuda
option
Mi Daypo

TEST BORRADO, QUIZÁS LE INTERESEMTA Soft Dev 4

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del test:
MTA Soft Dev 4

Descripción:
This is a test for the MTA 98 375 Exam

Autor:
AVATAR

Fecha de Creación:
21/02/2018

Categoría:
Otros

Número preguntas: 19
Comparte el test:
Facebook
Twitter
Whatsapp
Comparte el test:
Facebook
Twitter
Whatsapp
Últimos Comentarios
No hay ningún comentario sobre este test.
Temario:
CSS Flexbox Match flex-direction flex-align flex-order display flex-pack.
You need to use CSS to rotate some text counterclockwise when the page renders in Internet Explorer. Which markup will accomplish this? Transform: rotate (30deg); -ms-transform: rotate (30deg); -o-transform rotate(-30deg); -ms-transform rotate(-30deg);.
You are creating the styling for your webpage. Which two CSS attributes produce a scroll bar if your content overflows its element? Choose two. scroll auto hidden visible.
In CSS, the flow-into property deposits: Content into the flow The regions into a flow The flow into the regions The flow into the content.
Which two functions support 2D transformations in CSS3? Choose two. move() skew() scroll() matrix() zoom().
You want a certain element to always default its positioning to directly follow the previous element, regardless of the display characteristics. The position you should use is: Relative No change needed Static Absolute.
Match the HTML5 elements to the corresponding functions. Groups the header content in a table Defines a header cell in a table Defines a group of related options in a drop-down list Groups related elements in a form Specifies a group of one or more columns in a table for formatting .
Select three correct statements: TRUE: HTML5 requires that the tag specifies which third-part add-in or plug-in will be used to play your media. FALSE: HTML5 requires that the tag specifies which third-part add-in or plug-in will be used to play your media. TRUE: HTML5 video tags share media properties and events with HTML5 audio tags. FALSE: HTML5 video tags share media properties and events with HTML5 audio tags. TRUE: JavaScript may be used with HTML5 video and audio tags to enhance their behavior. FALSE: JavaScript may be used with HTML5 video and audio tags to enhance their behavior.
Which term describes the canvas API? vector-based xml-based retained-mode immediate-mode.
Which HTML tag defines superscript? sup small sub mark.
In HTML5, the autofocus attribute: enables one field and disables all others controls the movement between fields in a form defines the cursor location when a form is first accessed adds a default value to the field in a form.
Which element should you use to rotate as SVG square? AREA SHAPE PATH ANIMATETRANSFORM ANIMATEMOTION.
You need to use JavaScript to access the "section1" element in the following code fragment: <div id="section1"> Which method should you use? getElementById getElementByClassName getElementsByTagName getElementsByName.
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 circle at the given point a square at the given point a line from one point to another a semi-circle at the given point.
Web Workers define an API for: bi-directional, full-duplex communications over a single TCP socket. publishing frequently updated works for syndication running scripts in the background distributing load across multiple web servers.
Match the touch events to the corresponding actions: touchcancel touchend touchmove touchstart.
Which code fragment sets up a timer that calls a function named "adjust" every second? setTimeout(adjust, 1); setInterval(adjust, 1); setTimeout(adjust, 1000); setInterval(adjust, 1000);.
You need to ensure the scope of a variable named j is limited to the block of a single function named foo(). Which code fragment will accomplish this? var l; function foo() { ... } function foo() { var j; ... } function foo() { j = 0; ... } j = 0; function foo() { ... } .
You code includes the following fragment: <input type="text" name="text1" id="myText" /> Which code will retrieve the contents of the INPUT element? var txtContents = document.getElementById('myText').value; var txtContents = document.getElementById('text1'); var txtContents = document.getElementById('myText'); var txtContents = document.getElementById('text1').value; .
Denunciar test Consentimiento Condiciones de uso