How do you specify a function to be called if the request fails in $.ajax()?
A). Using the success option
B). Using the type option
C). Using the url option
D). Using the error option
Which jQuery method loads HTML content from the server and inserts it into the selected element?
A). $.html()
B). $.load()
C). $.get()
D). $.post()
How can you prevent the default form submission using jQuery?
A). event.stopPropagation()
B). event.preventDefault()
C). event.stopImmediatePropagation()
D). event.unbind()
What is the default data type for $.ajax() if not specified?
A). json
B). xml
C). html
D). text
How do you specify the URL to send the AJAX request to in $.ajax()?
A). data
B). type
C). url
D). success
Which callback function is executed when the AJAX request completes, regardless of success or failure?
A). success
B). error
C). complete
D). done
What does the context option in $.ajax() do?
A). Specifies the request timeout
B). Defines the URL
C). Specifies the context for the callback functions
D). Sets the HTTP method
How do you handle a JSON response in a jQuery AJAX call?
A). Set dataType to 'html'
B). Set dataType to 'json'
C). Set dataType to 'xml'
D). Set dataType to 'script'
How can you parse an XML response in jQuery?
A). Using $.parseXML()
B). Using JSON.parse()
C). Using $.ajax() with dataType 'html'
D). Using $.ajax() with dataType 'json'
How can you handle JSONP responses in jQuery?
A). Set dataType to 'jsonp'
B). Set type to 'GET'
C). Use $.getJSON()
D). Use $.parseJSON()