Question 1
Question
¿Los elementos de bloque normalmente se despliegan sin iniciar una nueva línea?
Block elements are normally displayed without starting a new line?
Question 2
Question
¿Cuál es la manera correcta para hacer un checkbox?
What is the correct HTML for making a checkbox?
Answer
-
<checkbox>
-
<input type="check">
-
<check>
-
<input type="checkbox">
Question 3
Question
¿Cuál es la sintaxis correcta?
Which is the correct CSS syntax?
Answer
-
{body;color:black;}
-
body:color=black;
-
body {color: black;}
-
{body:color=black;}
Question 4
Question
¿Cuál es el valor por default de la propiedad de la posición?
What is the default value of the position property?
Answer
-
static
-
absolute
-
relative
-
fixed
Question 5
Question
¿Cuál es la sintaxis correcta de JavaScript para cambiar el contenido del elemento HTML mostrado a continuación?
What is the correct JavaScript syntax to change the content of the HTML element below?
<p id="demo">This is a demonstration.</p>
Answer
-
document.getElement("p").innerHTML = "Hello World!";
-
document.getElementById("demo").innerHTML = "Hello World!";
-
document.getElementByName("p").innerHTML = "Hello World!";
-
#demo.innerHTML = "Hello World!";
Question 6
Question
¿Cómo escribir una declaración if en JavaScript?
How to write an IF statement in JavaScript?
Answer
-
if i = 5
-
if i = 5 then
-
if i == 5 then
-
if (i == 5)
Question 7
Question
¿Con SQL, como seleccionas todos los datos de una tabla llamada "Persons" donde el valor de la columna "FirstName" sea "Peter"?
With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" is "Peter"?
Answer
-
SELECT [all] FROM Persons WHERE FirstName LIKE 'Peter'
-
SELECT * FROM Persons WHERE FirstName='Peter'
-
SELECT * FROM Persons WHERE FirstName<>'Peter'
-
SELECT [all] FROM Persons WHERE FirstName='Peter'
Question 8
Question
¿Cómo puedes cambiar "Hansen" a "Nilsen" en la columna "Lastname" de la tabla "Persons"?
How can you change "Hansen" into "Nilsen" in the "LastName" column in the Persons table?
Answer
-
UPDATE Persons SET LastName='Hansen' INTO LastName='Nilsen'
-
UPDATE Persons SET LastName='Nilsen' WHERE LastName='Hansen'
-
MODIFY Persons SET LastName='Nilsen' WHERE LastName='Hansen'
-
MODIFY Persons SET LastName='Hansen' INTO LastName='Nilsen
Question 9
Question
¿Cuándo se utiliza el método POST, las variables se muestran en el URL?
When using the POST method, variables are displayed in the URL?
Question 10
Question
¿Cuál es la manera correcta para incluir un archivo "time.inc"?
What is the correct way to include the file "time.inc" ?
Answer
-
<?php include:"time.inc"; ?>
-
<?php include file="time.inc"; ?>
-
<!-- include file="time.inc" -->
-
<?php include "time.inc"; ?>
Question 11
Question
Una barra de navegación estándar es creada con:
A standard navigation bar is created with:
Answer
-
<nav class="navbar default-navbar">
-
<nav class="nav navbar">
-
<nav class="navbar navbar-default">
-
<nav class="navigationbar navbar-default">
Question 12
Question
¿Qué clase indica un menú desplegable?
Which class indicates a dropdown menu?
Answer
-
.select
-
.dropdown
-
.dropdown-list
Question 13
Question
El siguiente selector :$("div") . ¿Qué selección realiza?
Look at the following selector: $("div"). What does it select?
Answer
-
el primer elemento div
-
todos los elementos div
Question 14
Question
¿Cuál es el código de JQuery correcto para establecer el color de fondo de todos los elementos p a rojo?
What is the correct jQuery code to set the background color of all p elements to red?
Answer
-
$("p").manipulate("background-color","red");
-
$("p").css("background-color","red");
-
$("p").style("background-color","red");
-
$("p").layout("background-color","red");
Question 15
Question
Crea un formulario que
<!DOCTYPE html>
<[blank_start]html[blank_end]>
<body>
<[blank_start]form[blank_end] [blank_start]action[blank_end]="action_page.php" method="get">
First name: <[blank_start]input type[blank_end]="text" name="firstname" value="John" size="40">
<input type="submit">
<[blank_start]/form[blank_end]>
</body>
</html>
Answer
-
html
-
head
-
action
-
href
-
input type
-
input
-
/form
-
form
-
HTMLl
-
form
-
fomr
-
method
-
name
Question 16
Question
<!DOCTYPE html>
<html>
<body>
<[blank_start]?[blank_end]php
$color = "red";
[blank_start]echo[blank_end] "My car is " . $[blank_start]color[blank_end] . "<br>";
?>
</body>
<[blank_start]/html[blank_end]>
Answer
-
_
-
$
-
¿
-
?
-
Color
-
coLor
-
color
-
COLOR
-
/
-
?>
-
/html
-
$var
-
Echo
-
echo
-
<br>
Question 17
Question
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<p>Envelope icon: <span class="[blank_start]glyphicon glyphicon-envelope[blank_end]"></span></p>
<p>Envelope icon as a link: <a href="#"><span class="[blank_start]glyphicon glyphicon-envelope[blank_end]"></span></a> </p>
<p>Search icon: <span class="[blank_start]glyphicon glyphicon-search[blank_end]"></span></p>
<p>Search icon on a button: <[blank_start]button[blank_end] type="button" class="[blank_start]btn btn-default[blank_end]">
<span class="[blank_start]glyphicon glyphicon-search[blank_end]"></span> Search </[blank_start]button[blank_end]> </p>
<p>Search icon on a styled button:
<[blank_start]button[blank_end] type="button" class="btn btn-info">
<span class="[blank_start]glyphicon glyphicon-search[blank_end]"></span> Search </[blank_start]button[blank_end]></p>
<p>Print icon: <span class="[blank_start]glyphicon glyphicon-print[blank_end]"></span></p>
<p>Print icon on a styled link button: <a href="#" class="btn btn-success btn-lg">
<span class="[blank_start]glyphicon glyphicon-print[blank_end]"></span> Print </a> </p>
</div>
</body>
</html>
Answer
-
glyphicon glyphicon-envelope
-
glyphicon glyphicon-search
-
glyphicon glyphicon print
-
alert alert-success
-
glyphicon glyphicon-name
-
glyphicon glyphicon-envelope
-
glyphicon glyphicon-print
-
glyphicon glyphicon-envelope
-
glyphicon glyphicon print
-
glyphicon glyphicon-search
-
btn-default
-
btn
-
button
-
btn btn-default
-
.btn
-
glyphicon gliphicon-search
-
glyphicon glyphicon envelope
-
glyphicon glyphicon-search
-
glyphicon glyphicon print
-
input
-
button
-
btn
-
type
-
input
-
button
-
btn
-
type
-
input
-
button
-
btn
-
type
-
input
-
button
-
btn
-
type
-
glyphicon glyphicon-envelope
-
glyphicon glyphicon-search
-
glyphicon glyphicon print
-
glyphicon glyphicon-print
-
glyphicon glyphicon search
-
glyphicon glyphicon-envelope
-
glyphicon glyphicon print
-
glyphicon glyphicon envelope
-
glyphicon glyphicon envelope
-
glyphicon glyphicon search
-
glyphicon glyphicon search
-
glyphicon glyphicon search
-
glyphicon glyphicon-print
-
glyphicon glyphicon-envelope
-
glyphicon glyphicon search
-
glyphicon glyphicon print
Question 18
Question
¿Qué estilo de border-style hace que se vea como la imagen ?
border-style: dotted;
border-style: dashed;
border-style: solid;
escríbelo en el punto naranja.
Question 19
Question
La etiqueta [blank_start]<style>[blank_end] se utiliza para definir la información del estilo para una página web.
La propiedad CSS [blank_start]font-size[blank_end] sirve para determinar el tamaño de la fuente.
La propiedad [blank_start]background-color[blank_end] determina el color de fondo de un elemento.
Con el símbolo [blank_start]#[blank_end] se declara un id.
Con el símbolo [blank_start].[blank_end] se declara una clase.
Selecciona las opciones correctas para que el cuerpo tenga un color azul, y el encabezado verde.
<!DOCTYPE html>
<html>
<head>
<style>
[blank_start]body[blank_end] {
[blank_start]color[blank_end]: blue;
}
[blank_start]h1[blank_end] {
color: [blank_start]green[blank_end];
}
</style>
</head>
<body>
<h1>HOLA</h1>
<p>MUNDO</p>
</body>
</html>
Answer
-
<style>
-
<head>
-
<html>
-
<Style>
-
font-size
-
em
-
font-family
-
size
-
bacground-color
-
background-attachment
-
background-position
-
background-color
-
*
-
.
-
?
-
#
-
*
-
?
-
#
-
.
-
body
-
p
-
h1
-
.
-
text
-
font color
-
rgb
-
color
-
h1
-
body
-
head
-
p
-
green
-
blue
-
DarkGreen
-
ForestGreen
Question 20
Question
Completa el siguiente código.
Teniendo cierta base datos, completa la consulta que seleccione todas las filas de ambas tablas, siempre y cuando exista la coincidencia entre las columnas de diferentes tablas.
[blank_start]SELECT[blank_end] column_name(s)
[blank_start]FROM[blank_end] table1
[blank_start]INNER JOIN[blank_end] table2
ON table1.column_name=table2.column_name;
Question 21
Question
Es un algoritmo de codificación de 128 bits que genera un hash hexadecimal de 32 caracteres, independientemente de la longitud de la palabra de entrada. Este algoritmo no es reversible, siendo normalmente imposible encontrar la palabra original.
Question 22
Question
Este código de arreglos en php es correcto?
<!DOCTYPE html>
<html>
<body>
<?php
$cars = array("Volvo", "BMW", "Toyota");
echo "I like " . $cars[] . ", " . $cars[] . " and " . $cars[] . ".";
?>
</body>
</html>
Question 23
Question
SQL
¿Los índices agrupados ordenan y almacenan las filas de los datos de la tabla o vista de acuerdo con los valores de la clave del índice?
Question 24
Question
SQL
¿Los índices no agrupados tienen una estructura separada de las filas de datos?