Q701. What are uncontrolled components?
The **Uncontrolled components** are form elements (like ``, ``, or ``) that **manage their own state internally** via the **DOM**, rather than through React state. You ca...
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 (2,728 available).
The **Uncontrolled components** are form elements (like ``, ``, or ``) that **manage their own state internally** via the **DOM**, rather than through React state. You ca...
Exporting `dynamic` controls how a route is rendered: `'force-dynamic'`, `'force-static'`, or `'auto'`. Use it to override Next.js detection — for example, force dynamic ...
In order to track each node's identity, and thus reuse and reorder existing elements, you need to provide a unique `key` attribute for each item with in `v-for` iteration...
```sql -- MySQL SELECT * FROM tbl ORDER BY RAND() LIMIT 10; -- PostgreSQL SELECT * FROM tbl ORDER BY RANDOM() LIMIT 10; -- SQL Server SELECT TOP 10 * FROM tbl ORDER BY NE...
An **iterator** in Python is an object that represents a stream of data. It implements the **Python Iterator Protocol**, which consists of two core magic methods: 1. **`_...
An **HTML form** (``) is a document container designed to collect user input and transmit it securely to a web server or client-side JavaScript handler. ### Core Form Ana...
Yes, TypeScript can be used for backend development. TypeScript is a superset of JavaScript that adds static typing and other features to JavaScript, making it more suita...
The **Temporal Dead Zone (TDZ)** refers to the period between the start of a block and the point where a variable declared with `let` or `const` is initialized. During th...
Both `React.createElement` and `React.cloneElement` are used to work with React elements, but they serve different purposes. #### **createElement:** Creates a new React e...
In the App Router you can create a `head.js` or `head.tsx` file inside a route segment to return `` elements (title, meta, link) for that segment. This is preferred for c...
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.