InterviewSolution
Saved Bookmarks
| 1. |
What type of file is YUI Compressor?(a) Binary file(b) JAR file(c) Text file(d) Assembly file |
|
Answer» The correct choice is (b) JAR file Easy explanation: The YUI Compressor is JavaScript minifier designed to be 100% safe and yield a higher compression ratio than most other tools. YUI Compressor is a jar file and runs from the command line. Because of this, it is easily integrated into a build process. It looks like this: java -jar yuicompressor-[version].jar [options] [file name] |
|