a) Bundling allow to load more than one file in one request
b) Minification remove unnecessary white space and comments and shortening variable names to one character.
in App_Start\BundleConfig.cs add following function
public static void RegisterBundles(BundleCollection bundles)
{
Note!! in web.config dont forget to set debug=false below
<system.web>
<!--<sessionState mode="InProc" timeout="60"></sessionState> -->
<!--Session will be time out after 60 minutes -->
<sessionState mode="InProc" cookieless="false" timeout="60"/>
<compilation debug="true" targetFramework="4.5"/>