Recommending a specific list of java interview questions for an interview is a risky business. Experienced Java developers have different view what is reasonable and what is not reasonable to ask. At the same time Junior Java Developers may find that the following Java interview question is fair and reasonable.
What is the difference between the HTML methods GET and POST?
GET and POST methods are used as the way for sending HTML form data to the server. The fundamental difference between GET and POST so that GET appends the parameters to the URL, while the latter means that the form data is to appear within a message body. A good basic rule is when the application sends the form data it should be using POST. If the application are just running search queries then GET could be more appropriate for implementation.
I am absolutely correct, every Java developer should expect this question and provide the correct answer.
No comments:
Post a Comment