level two Flashcards

(28 cards)

1
Q

¿Qué diferencia semántica hay entre <section> y <article>?

A

<article> es contenido independiente, <section> es temático
</section></article>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

¿Qué atributo se usa para vincular un label con un input?

A

for

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

¿Qué hace el atributo action en un formulario?

A

Define a dónde se envía la info

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

¿Qué pasa si no incluís un atributo name en un input?

A

El dato no se envía al servidor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

¿Qué propiedad hace que el padding y border no sumen al ancho total?

A

box-sizing: border-box

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

¿Qué valor de background-repeat impide la repetición?

A

no-repeat

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

¿Qué valor de text-transform convierte todo a mayúsculas?

A

uppercase

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

¿Cuál es la prioridad entre selectores: clase o etiqueta?

A

Clase

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

¿Qué unidad es relativa al tamaño de la fuente del html root?

A

rem

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

¿Qué hace justify-content: space-between?

A

Espacia ítems con separación entre ellos

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

¿Qué valor de align-items alinea ítems al fondo del eje transversal?

A

flex-end

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

¿Qué propiedad se usa para alinear solo un ítem?

A

align-self

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

¿Qué hace la propiedad order en Flexbox?

A

Cambia el orden visual del ítem

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

¿Qué hace git status?

A

Muestra el estado del repositorio

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

¿Qué significa U en git status?

A

Archivo no trackeado

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

¿Qué comando muestra el historial de commits?

17
Q

¿Qué debe pasar antes de hacer un git push?

A

Hacer add y commit

18
Q

¿Qué diferencia hay entre % y vw?

A

% depende del contenedor, vw del viewport

19
Q

¿Qué estrategia responsive se recomienda: mobile-first o desktop-first?

20
Q

¿Qué es un breakpoint?

A

Punto de cambio en el diseño según resolución

21
Q

¿Qué atributo permite subir varios archivos en un input?

22
Q

¿Qué hace el atributo accept en un input type=’file’?

A

Restringe tipos de archivo

23
Q

¿Por qué es importante usar value en checkboxes?

A

Identifica el dato enviado

24
Q

¿Qué tipo de valor devuelve una comparación?

25
¿Qué diferencia hay entre let y const?
const no permite reasignación
26
¿Qué pasa si accedés a un array con un índice inexistente?
Devuelve undefined
27
¿Qué método de array agrega al final?
.push()
28
¿Qué pasa si declarás una variable con let dos veces?
Da error