Which Webpack plugin is used to automatically load jQuery whenever $ or jQuery is used?
A). DefinePlugin
B). ProvidePlugin
C). EnvironmentPlugin
D). LoaderPlugin
Which method in jQuery is used to change the text content of a selected element?
A). .html()
B). .text()
C). .val()
D). .append()
How can you optimize the performance of a jQuery-heavy application in a modern framework?
A). Minimize jQuery usage
B). Use jQuery for everything
C). Avoid using native methods
D). Use multiple jQuery plugins
In Vue.js, which lifecycle hook should you use to run jQuery code after the component mounts?
A). created
B). updated
C). mounted
D). destroyed
In React, how do you ensure jQuery code runs only once after the component mounts?
A). Use useEffect without dependencies
B). Use useEffect with an empty dependency array
C). Use useEffect with a non-empty dependency array
D). Use useEffect with useState
How do you make sure that jQuery is available globally in a Webpack project?
A). By adding it to the entry point
B). By configuring the ProvidePlugin
C). By adding it to the output
D). By adding it to the module.rules
What Angular lifecycle hook should you use to run jQuery code after the components view has initialized?
A). ngOnInit
B). ngAfterViewInit
C). ngAfterContentInit
D). ngDoCheck
Which command correctly installs both jQuery and the types for jQuery in a TypeScript project?
A). npm install jquery @types/jquery
B). npm install jquery jquery-types
C). npm add jquery @types/jquery
D). npm install jquery types
How do you ensure that jQuery code runs after an Angular component's view has been fully initialized?
A). Place jQuery code in ngOnInit
B). Place jQuery code in ngDoCheck
C). Place jQuery code in ngAfterViewInit
D). Place jQuery code in the constructor
How do you declare jQuery globally in a Vue component?
A). import jQuery from 'jquery'
B). const jQuery = require('jquery')
C). declare var $: any;
D). import $ from 'jquery'