JavaScript and Java Fundamentals Quiz

Test your knowledge of JavaScript web development concepts including DOM manipulation, XMLHttpRequest, events, and Java fundamentals including collections, control flow, and memory management.

20 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

What is the output of following block of program ? boolean var = false; if(var = true) { System.out.println(“TRUE”); } else { System.out.println(“FALSE”); }

  1. TRUE
  2. true
  3. FALSE
  4. Compilation Error
  5. Run time Error
Question 2 Multiple Choice (Single Answer)

A Vector is declared as follows. What happens if the code tried to add 6 th element to this Vector new vector(5,10)

  1. The element will not be successfully added
  2. ArrayIndexOutOfBounds Exception
  3. The Vector allocates space to accommodate up to 15 elements
  4. Nothing will happen
Question 3 Multiple Choice (Single Answer)

int x = 2; switch (x) { case 1:System.out.println(“1?); case 2: case 3:System.out.println(“3?); case 4: case 5:System.out.println(“5?); }

  1. No output
  2. 3 and 5
  3. 1,3 and 5
  4. 0
  5. 2
Question 4 True/False

Is sizeof a keyword ?

  1. True
  2. False
Question 5 Multiple Choice (Single Answer)

Which is false about garbage collection in java

  1. the heap space occupied by an un-referenced object can be recycled and made available for subsequent new objects
  2. When the total memory allocated to a Java program exceeds some threshold the garbage coollector is invoked
  3. the program does not suspend during garbage collection
  4. garbage collection requires extra memory
Question 6 True/False

document.getElementById("trial").innerHTML() is a valid statement

  1. True
  2. False
Question 7 Multiple Choice (Single Answer)

window.location.href="www.google.com". The given statement when executed would result in one of the following:

  1. It will give an error
  2. It will execute and nothing will happen
  3. It will execute and www.google.com is going to open
  4. None of The above
Question 8 Multiple Choice (Single Answer)

onUnload event of Javascript is fired in which of the following conditions

  1. When browser is closed
  2. When the page reloads as well.
  3. Only when you navigate out of the page.
  4. All Of the Above
Question 9 True/False

The following piece of javascript code is going to work fine. Trial Page

  1. True
  2. False
Question 10 True/False

Javascript does not distinguish between name of a function and a variable

  1. True
  2. False
Question 11 Multiple Choice (Single Answer)

innerHTML, innerText, outerHTML and outerText. What are these of Element object

  1. Methods
  2. Properties
  3. Objects
  4. None of The above
Question 12 True/False

All the HTML objects like Form, Select, Textarea and others are implicitly an instance of Element as well

  1. True
  2. False
Question 13 True/False

It is possible to add custom methods and properties in pre-existing objects like String, Math and others

  1. True
  2. False
Question 14 True/False

One can add custom method and properties to objects in javascript without using prototype as well.

  1. True
  2. False
Question 15 Multiple Choice (Single Answer)

Which of the following HTTP response codes indicate a successful response from the server

  1. 200
  2. 304
  3. 404
  4. None of The above
Question 16 True/False

onreadystatechange is a method of XMLHttpRequest Object

  1. True
  2. False
Question 17 True/False

POST requests can also be send through the open method of the XMLHttpRequest Object

  1. True
  2. False
Question 18 True/False

URL accessed through XMLHttpRequest's open method is stored in the history of the browser.

  1. True
  2. False
Question 19 True/False

parseJSON is a standard function available in javascript like alert, eval and others.

  1. True
  2. False
Question 20 Multiple Choice (Multiple Answers)

Please select right set of technologies that are required for implementing Dynamic Content or DHTML in your application

  1. HTML
  2. CSS
  3. Javascript
  4. Ajax