Which method can be used to load a JavaScript file and execute it?
A). $.get()
B). $.post()
C). $.getScript()
D). $.ajax()
What is the purpose of the success option in $.ajax()?
A). To specify the URL
B). To define data to send
C). To handle successful responses
D). To handle request errors
What does the complete option in $.ajax() do?
A). Defines the URL to request
B). Specifies the data to send
C). Executes after request completes
D). Handles successful responses
Which jQuery method is the most versatile for making AJAX requests?
A). $.get()
B). $.post()
C). $.ajax()
D). $.getJSON()
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
In the $.ajax() method, which option specifies the URL to send the request to?
A). url
B). type
C). data
D). success
What is the default HTTP method for $.ajax() if not specified?
A). GET
B). POST
C). PUT
D). DELETE
How can you send JSON data in a $.ajax() request?
A). By setting type to GET
B). By setting dataType to xml
C). By setting contentType to application/json
D). By setting url to json
Which option in $.ajax() specifies the data to be sent to the server?
A). url
B). type
C). data
D). success
Which method is a shorthand for $.ajax() with type set to GET?
A). $.get()
B). $.post()
C). $.getJSON()
D). $.ajax()