Time : 450 sec
1.  What is the extension for jQuery files?
1.  .JSON
2.  .JS
3.  .JQ
4.  .jquery

2.is Jquery Client side Language?
1. yes
2. No
3. both
4. none

3. can we call AJAX in jQuery?
1. yes
2. No
3. both
4. none

4. how to get html content of <p> element with id name in jquery?
1. $("#id_name").html()
2. $(".id_name").html()
3. $("id_name").html()
4. all of the above

5. how to get value of <input> element with id name in jquery?
1. $("#id_name").val()
2. $(".id_name").val()
3. $("#id_name").html()
4. $(".id_name").html()

6. how to get styles with an id in jquery?
1.  $("#idname").style(attribuename);
2.  $("#idname").css(attribuename);
3.  $("#idname").cascade(attribuename);
4.  none

7. how to hide div block with an id in jquery?
1.  $("#idname").hide()
2.  $("#idname").hidden()
3.  $("#idname").none()
4.  $("#idname").disable()

8.  jQuery is written in?
1. C
2. C++
3. JAVA
4. JavaScript

9.  which function is used to execute after document is loaded?
1.  $(document).ready()
2.  $(document).load()
3.  $(document).loader()
4.  none.

10. Which jQuery method returns the immediate parent element of the selected element?
1.  next()
2.  prev()
3.  parents()
4.  parent()

11.how to set text color to div block with an id?
1.   $("#idname").style(attribuename,value);
2.  $("#idname").css(attribuename,value);
3.  $("#idname").cascade(attribuename,value);
4.  none

12.Where can we write jquery code?
1. Any where. 
2. <head></head>
3. <body></body>
4. <div></div>

13. we can write javascript code code inside jquery?
1.  true
2.  false
3. both
4. none

14. how  to append the text to div with an id?
1.   $("#idname").append(text);
2.  $("#idname").add(text);
3.  $("#idname").push(text);
4.  none
;

15. How to write comments in jQuery?
1. //commentd goes here
2. /* comments goes here */
3. both 1 and 2
4. none