Logo

Javascript Questions Set 121:

Quiz Mode

Which of the following is not a predefined object in JavaScript?

1
2
3
4

Solution:

 What are the events generated by the Node objects called? 

1
2
3
4

Solution:

Which of the following is the most efficient in terms of file size reduction?

1
2
3
4

Solution:

Which storage mechanism allows the caching of web pages and their associated resources?

1
2
3
4

Solution:

What is the command to access the JavaScript heap size limit?

1
2
3
4

Solution:

Where can we place the <script> element in an HTML document?

1
2
3
4
5

Solution:

Which of the following computer operations uses a lot of CPU cycles?

1
2
3
4

Solution:

 The property of a primary expression is ____________ 

1
2
3
4

Solution:

JavaScript _________ when there is an indefinite or an infinite value during an arithmetic computation. 

1
2
3
4

Solution:

What does the this keyword refer to in the following code?


var person = {
  firstName: "Peter",
  lastName : "Castel",
  pid      : 9999,
  fullName : function() {
 return this.firstName + " " + this.lastName;
  }
};

1
2
3
4

Solution: