jQuery Multiple Choice Questions
jQuery Multiple Choice Questions 1) Who developed jQuery, and in which year it was first released? John Richard in 2001 Mark Bensman in 2004 John Resig in 2006 None of the above Answer: (c) John Resig in 2006 Explanation: jQuery was first released in January 2006 by John Resig at BarCamp NYC. It is currently headed by Timmy Wilson and maintained by a team of developers. 2) jQuery is a - JavaScript method JavaScript library JSON library PHP method Answer: (b) JavaScript library Explanation: jQuery is a fast, small, cross-platform and feature-rich JavaScript library. It is designed to simplify the client-side scripting of HTML. It is a small, light-weight and fast JavaScript library. 3) Which of the following sign is used as a shortcut for jQuery? the % sign the & sign the $ sign the @ sign Answer: (c) the $ sign Explanation: Every jQuery selector start with this dollar sign $(). This sign is known as the factory function. It uses the three basic building blocks whil...