Intermediate jQuery MCQ Interview Question’s & Answer’s Intermediate jQuery 1 / 10 Which method is used to attach an event handler function to an HTML element when the mouse pointer enters the HTML element? mouseover() mousevisit() mouse-enter() mouseenter() 2 / 10 Which method is used to attach an event handler function to an HTML element on mouse double click? click() Click() dblclick() DblClick() 3 / 10 Which method is used to attach an event handler function to an HTML element on mouse click? click() Click() dblclick() DblClick() 4 / 10 Which is the correct jQuery selector to select all odd table rows? $("tr::odd") $("tr.odd") $("tr:odd") $("tr:#odd") 5 / 10 Which is the correct jQuery selector to select all even table rows? $("tr::even") $("tr.even") $("tr:even") $("tr:#even") 6 / 10 Which is the correct jQuery selector to select all <button> elements and <input> elements with type="input"? $(".button") $(":button") $("button","input type="button") $(":button,:input") 7 / 10 Which is the correct jQuery selector to select all elements having "href" attribute? $("a.[href]") $("a:[href]") $("[href].*") $("[href]") 8 / 10 Which is the correct jQuery selector to select the first list item of every <ul> element? $("ul li:first-child") $("ul li:first.*") $("li:first-child") $("ul:first-child") 9 / 10 Which is the correct jQuery selector to select the first list item of <ul> element? $("ul li:first") $("ul:first") $("li:first") $("ul.li:first") 10 / 10 Which is the correct jQuery selector to select the first <div> of the HTML document? $("div.first") $("div#first") $("div::first") $("div:first") Your score isThe average score is 0% 0% Restart quiz