1.  const f2 = window.new("https://google.com");  

2.  const f2 = window.open("https://google.com");  

3.  const f2 = document.open("https://google.com");

4.  const f2 = document.new("https://google.com");

4
Correct Answer :
const f2 = window.open("https://google.com");

 


Explanation :
No Explanation available for this question

1.  const fruits = 1 = ("orange"), 2 = ("banana"), 3 = ("apple")

2.  var fruits = (1:"orange", 2:"banana", 3:"apple")

3.  var fruits = "orange", "banana", "apple"

4.  var fruits = ["orange", "banana", "apple"]

4
Correct Answer :

var fruits = ["orange", "banana", "apple"]


Explanation :
No Explanation available for this question

1.  const arr = new Array(10)

2.  const arr[10]

3.  const arr = array(10)

4.  const arr(10)

4
Correct Answer :

const arr = new Array(10)


Explanation :
No Explanation available for this question

1.  Math.floor((Math.random() * 5) + 4);

2.  Math.floor((Math.random() * 4) + 4);

3.  Math.floor((Math.random() * 4) + 5);

4.  Math.floor((Math.random() * 5) + 5);

4
Correct Answer :

Math.floor((Math.random() * 5) + 5);


Explanation :
No Explanation available for this question

1.  Any

2.  As much as you want

3.  One for each argument

4.  One argument

4
Correct Answer :

One for each argument


Explanation :
No Explanation available for this question

1.  text

2.  a variable

3.  an operator

4.  a number

4
Correct Answer :

an operator


Explanation :
No Explanation available for this question

1.  navigator.appName

2.  browser.name

3.  client.navName

4.  window.appName

4
Correct Answer :

navigator.appName


Explanation :
No Explanation available for this question

1.  X

2.  Y

3.  Z

4.  false

4
Correct Answer :

Y


Explanation :
No Explanation available for this question

1.  

2.  >

3.  =

4.  !=

4
Correct Answer :

=


Explanation :
No Explanation available for this question

1.  onkeypress

2.  onkeydown

3.  onclick

4.  onfocus

4
Correct Answer :

onkeypress


Explanation :
No Explanation available for this question

Interview Questions

MongoDB
Java Script
Node JS
PHP
JQuery
Python