Q831. What are props?
Props are custom attributes you can register on a component. When a value is passed to a prop attribute, it becomes a property on that component instance. You can pass th...
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).
Props are custom attributes you can register on a component. When a value is passed to a prop attribute, it becomes a property on that component instance. You can pass th...
If no direction keyword is specified in an `ORDER BY` clause, the default sort order is **`ASC` (Ascending)**: ```sql -- These two queries produce identical ordering: SEL...
It is a Floor Divisionoperator , which is used for dividing two operands with the result as quotient showing only digits before the decimal point. For instance, 10//5 = 2...
The **``** element represents a section of a page whose purpose is to provide navigation links, either within the current document or to external pages: ```html All Categ...
Decorators in TypeScript allows us to add metadata or behavior to classes, methods, properties, or parameters at design time. They are declared using the @ symbol followe...
A cookie is a piece of data that is stored on your computer to be accessed by your browser. Cookies are saved as key/value pairs. For example, you can create a cookie nam...
**Modern Recommendation (2026):** **TypeScript** is the industry standard for type checking in React applications. While PropTypes (`React.PropTypes` moved to `prop-types...
Rendering pages on each request. If a page uses Server-side Rendering, the page HTML is generated on each request. ```jsx export async function getServerSideProps() { con...
In VueJS 2.x, every component must have a single root element **when template has more than one element**. In this case, you need to wrap the elements with a parent eleme...
```sql -- MySQL / PostgreSQL SELECT name, mark FROM Students ORDER BY mark DESC LIMIT 3; -- SQL Server SELECT TOP 3 name, mark FROM Students ORDER BY mark DESC; -- Oracle...
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.