Cuestionario

Cuestionario

Assessment

Quiz

Created by

Valentin Benitez

Professional Development, Computers, Mathematics

10th Grade

1 plays

Hard

Student preview

quiz-placeholder

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

var frutas = [guindas, manzanas, bananas]

console.log( frutas.sort() )

['bananas', 'guindas', 'manzanas']

[guindas, bananas, manzanas]

[manzanas, bananas, guindas]

Syntax Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

console.log(barco)

let barco = 'azul';

azul

undefined

referenceError

null

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

['a','b','c','d'].join('-')

['a'-'b'-'c'-'d']

"a-b-c-d"

"a"-"b"-"c"-"d"

"A"-"B"-"C"-"d"

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Quiero acceder a la propiedad temperamento del perro, que cambia segun el humor que tenga

perro[temperamento]

perro.temperamento

perro["temperamento"]

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

console.log(console.log())

null

"console.log"

undefined

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

var fn = function ( param1, param2 ) {

console.log( param1, param2 );

}

var newFn = fn.bind( console, 'param1Fixed' );

fn( 'Hello', 'World' );

newFn( 'Goodbye', 'Lenin' );

'Hello' 'World'

and

'param1Fixed' 'Goodbye'

'Hello', 'World'

and

undefined

undefined

and

'Goodbye' 'Lenin'

'Hello' 'World'

and

'Goodbye' 'Lenin'