Q1. What does a bundler do and why do front-end projects need one?
Browsers can load ES modules, but a large app would issue hundreds of requests, and TypeScript, JSX, CSS and assets all need processing. A bundler takes an entry point, f...
Technical Question Bank · Peer-Reviewed
Search and filter frequently asked interview questions across technical, programming, and behavioral domains. Tailor your interview preparation by difficulty for freshers or experienced developers (17 available).
Browsers can load ES modules, but a large app would issue hundreds of requests, and TypeScript, JSX, CSS and assets all need processing. A bundler takes an entry point, f...
A module is a reusable package of Terraform configuration. Every configuration is a root module, and it can call child modules. Benefits: - Encapsulation: expose a small ...
CommonJS is Node's original system: require() is a function executed at runtime, module.exports is a mutable object, resolution can be dynamic and conditional, and module...
A module is a collection of methods and constants. It cannot be instantiated, but it can be mixed in to add behaviour, which is Ruby's alternative to multiple inheritance...
Traditional Angular organises components, directives and pipes into NgModules that declare what belongs together and import other modules. Standalone components skip that...
In Python, module is the way to structure program. Each Python program file is a module, which import s other modules like objects and attributes. The folder of Python pr...
To share global variables across modules within a single program, create a special module. Import the config module in all modules of your application. The module will be...
Python can be embedded inside C/C++ applications using the official **Python C API** (`Python.h`). ### Standard Steps to Import and Invoke Python from C: ```c #include in...
Python modules are files containing Python code. This code can either be functions classes or variables. A Python module is a .py file containing executable code. Some of...
To modify the strings, Python's "re" module is providing 3 methods. They are: split() – uses a regex pattern to "split" a given string into a list. sub() – finds all subs...
HireXTech uses essential storage to remember your study preferences and third-party advertising cookies via Google AdSense in compliance with GDPR. You can choose to enable essential cookies only or accept all cookies. Read our Privacy Policy.