CODE SNIPPETS
1. Can you describe your workflow when you create a web page? 2. Name 3 ways to decrease page load. (perceived or actual load time) 3. Explain few Common Security Issues with Ajax. or limitations of Using Ajax on a Web Page? A. security, SEO search engine indexing, user experience, accessibility issues, browser integration, response time concerns, SEO 4. What is the difference between .call() and .apply()? .call() is used when the number of the function’s arguments are known to the programmer .apply() is used when the number is not known 5. Explain the purpose of each of the HTTP request types when used with a RESTful web service. -- GET, POST, PUT, PATCH, DELETE, TRACE, OPTIONS, HEAD, Connect. HEAD, GET, OPTIONS and TRACE) are defined as safe methods 6. Explain the difference between stateless and stateful protocols. Which type of protocol is HTTP? Explain your answer. -- A stateless communications protocol treats each request a...