Performance Measures - Study Mode

[#1] What does the Minify set the encoding HTTP header?
Correct Answer

(C) both deflate and gzip

Explanation

Solution: Minify reads the JavaScript file in, minifies it and when it responds it sets the accept encoding HTTP header to gzip, deflate.

[#2] What is in-built in the Minify?
Correct Answer

(B) Static compression

Explanation

Solution: Effectively Minify has built in HTTP static compression. This is especially useful if your web host doesn’t allow the gzipping of static content.

[#3] Which folder contains the Minify control panel?
Correct Answer

(A) /min/builder/

Explanation

Solution: To navigate to the Minify control panel, it is located in the /min/builder/.

[#4] Which of the following is the order of Minify process?
Correct Answer

(C) Read, Remove extraneous characters, gzip the response

Explanation

Solution: Minify reads in the content, decorates it by way of removing extraneous characters, and gzips the response.

[#5] YUI Compressor is analogous to
Correct Answer

(A) Minify

Explanation

Solution: Just like Minify, YUI Compressor strips out all of the unnecessary characters from your JavaScript, including spaces, line breaks, and comments.