Bundling with Webpack Question and Answer

This is a set of 30 questions of Bundling with webpack. All questions and answers are based on our research and self-study. If you missed the latest MCQs post on our site please visit once.

1.) Webpack is not recommended for large web applications

2.) Which of the following code can help us make the compilation automatically

3.) Which of this software is necessary to install web pack

4.) Executing the following command will automatically create a file named: webpack_practice >> npm init

5.) The distinct feature of the web pack is

6.) Which of the following tells web pack how to treat a Bundled Code

7.) Which of the following loader can be used to process style sheets.

8.) file:///home/ram/work/webpack_practice/index.html means that the file gets loaded from.

9.) Which helps in using babel with webpack babel.

10.) _________ simplifies the creation of HTML files to serve web pack bundles

11.) Which of the following features, considered the backbone of Webpack.

12.) Which of the following code snippet instantiates the plugin FrescoPlugin require

ANSWER: var FrescoPlugin = require(‘Welcome’);
var webpackConfig = {
// … config settings here …
plugins: [
new FrescoPlugin({options: true})
]
};

13.) Plugins are instantiable objects

14.) Which of the following, can be used to define an entry point?

15.) Webpack is a/an ___________________________ tool

16.) Webpack understands only __________________________ .

17.) Webpack is written in_____________________________

18.) can be transformed to JavaScript with the help of loaders

19.) Custom plugins can be installed via ____________

20.) Which of this software is necessary to install web pack

21.) Webpack can be optimized with the following command

22.) A plugin can be instantiated with the keyword

23.) Which of the following makes Web packs

24.) Webpack starts building the dependency graph from

25.) Webpack supports third-party libraries

26.) Which of the following is a Node.js Express server?

27.) The latest version of Webpack is

28.) Which of the following web pack feature enables Code on Demand

29.) Which of the following code can be used to install the style-loader?

30.) CoffeeScript can be transformed to JavaScript with the help of

Answer sheet of Bundling with Webpack

Question NumberQuestion Answer
1.)Answer.) FALSE
2.)Answer.) Build: “webpack ./src/app.js ./dist/bundle.js”
3.)Answer.) Node.js
4.)Answer.) Package.json
5.)Answer.) Code-Splitting
6.)Answer.) Output
7.)Answer.) CSS-loader
8.)Answer.) Local machine
9.)Answer.) Loader
10.)Answer.) HtmlWebpackPlugin
11.)Answer.) Plugins
12.)Answer.) var FrescoPlugin = require(‘Welcome’);
var webpackConfig = {
// … config settings here …
plugins: [
new FrescoPlugin({options: true})
]
};
13.)Answer.) TRUE
14.)Answer.) Module.exports={entry:
15.)Answer.) Open-source
16.)Answer.) Java script
17.)Answer.) Javascript
18.)Answer.) CoffeeScript
19.)Answer.) Both
20.)Answer.) None
21.)Answer.) Webpack –optimize -minimize
22.)Answer.) New
23.)Answer.) Extensible loader
24.)Answer.) Loaders
25.)Answer.) TRUE
26.)Answer.) Webpack-dev-server
27.)Answer.) 2. X
28.)Answer.) Code Splitting
29.)Answer.) Node install style-loader – save-dev
30.)Answer.) Plugins

bundling with webpack bundling with webpack bundling with webpack bundling with webpack bundling with webpack bundling with webpack

Leave a Reply

Your email address will not be published. Required fields are marked *