InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is the order of Minify process?(a) Remove extraneous characters, gzip the response, Read(b) Remove extraneous characters, Read, gzip the response(c) Read, Remove extraneous characters, gzip the response(d) Read, gzip, extract, removeI have been asked this question by my school teacher while I was bunking the class.I want to ask this question from JavaScript Minification topic in division Performance Measures in JavaScript of JavaScript |
|
Answer» Correct answer is (c) Read, Remove extraneous characters, gzip the response |
|