Grunt.js Quiz
1. Presence of _
Answer: is must is to proceed ahead with installation of grunt Node.js
2. Which takes care of performing the repetitive mundane work in Grunt.js?
Answer: TaskRunner
3. Registering of tasks happens within
Answer: Gruntfile
4. The 3 main actions to be performed in gruntfile include
Answer: Configurations , loading plug-ins, Register tasks
5. Grunt.js helps with simplification through automation. Is this true or false ?
Answer: True
6. Grunt does not allow users to add their custom developed plug-ins and publish them to npm.
Answer: False
7. Which of these is officially maintained grunt plug in?
Answer: contrib-less
8. The number of plug-ins available in grunt is
Answer: around 6000+
9. CSS with superpowers' : This refers to _
Answer: SASS
10. Which plug-in assists with cleaning of the unwanted folders & files
Answer: grunt-contrib-clean
11. The grunt plug-in to remove any unwanted CSS within project is
Answer: grunt-uncss
12. After installing any plug-ins, the file which would reflect the dependency changes automatically __
Answer: package.json
13. How can one reduce the size of images using grunt?
answer: grunt-contrib-imagemin
14. Which grunt plug-in would be of use if you would like to monitor set of .js files and take any appropriate actions if any changes happens to them?
Answer: Watch
15. Which plug-in takes care of sending automatic notifications?
Answer: grunt-notify
16. After installing the required plug-ins, the next activity would be _
Answer: Add the plug-in in gruntfile through loadNpmTasks
17. Which plug-in helps with revisioning the files ?
Answer: grunt-filerev
18. Which of these is not an example of the operations of the Task runner?
Answer: Splitting files
19. Grunt prefers____ model approach to coding
Answer: Configuration
20. SASS expands to
Answer: Syntactically Awesome Style Sheets
21. While installing grunt.js, the cli in "$ npm install grunt-cli -g" represents
Answer: Command line interface
22. Which plug-in helps with validation of the js files ?
Answer: grunt-contrib-jshint