FUNDAMENTALS OF COMPUTER

COMPUTER THREATS SECURITY

TYPES OF COMPUTER SECURITY

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
What does it mean for code to be minified?
A
It’s typed in really small font like 6pt.
B
It’s written only referencing functions contained in a library or API so that you only need to look at the function calls and not the definitions.
C
All of the spaces are removed from the code so that it is unreadable.
D
None of the above
Explanation: 

Detailed explanation-1: -While minification means reducing the whitespaces and comments, completely uglifying a code transforms it into an unreadable form by changing the function names, variable names, etc. And compression rewrites the code in binary to reduce the file size.

Detailed explanation-2: -Minification is the process of minimizing code and markup in your web pages and script files. It’s one of the main methods used to reduce load times and bandwidth usage on websites. Minification dramatically improves site speed and accessibility, directly translating into a better user experience.

Detailed explanation-3: -Minification, also known as minimization, is the process of removing all unnecessary characters from JavaScript source code without altering its functionality. This includes the removal of whitespace, comments, and semicolons, along with the use of shorter variable names and functions.

Detailed explanation-4: -Go to minifycode.com and click the CSS minifier tab. Then paste the CSS code into the input box and click the Minify CSS button. After the new minified code is generated, copy the code. Then go back to the css file of your website and replace the code with the new minified version.

There is 1 question to complete.