Q141. What is the difference between DELETE, TRUNCATE and DROP?
These three remove data at very different levels. `DELETE FROM t WHERE ...` is DML. It removes selected rows, fires triggers, is fully logged, can be rolled back within a...
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).
These three remove data at very different levels. `DELETE FROM t WHERE ...` is DML. It removes selected rows, fires triggers, is fully logged, can be rolled back within a...
The OSI model is a seven-layer reference model: Physical, Data Link, Network, Transport, Session, Presentation and Application. The TCP/IP model as taught is four layers:...
An operating system manages hardware and provides abstractions so programs do not talk to devices directly. Its main responsibilities are: - Process management: create, s...
Encapsulation means bundling data with the operations that act on it and restricting direct access to the internals. The class exposes a deliberate public API and keeps f...
A funnel measures how many users progress through an ordered sequence of steps, such as view, add to cart, checkout and purchase. The conversion rate at each step shows w...
A Type I error is a false positive: rejecting the null hypothesis when it is actually true. Its probability is the significance level alpha, usually 0.05. In a fraud syst...
Class imbalance means one class is far rarer, so accuracy becomes misleading and models favor the majority. Strategies: - Resampling: oversample the minority (SMOTE synth...
Both are dimensional models. A star schema has one central fact table surrounded by denormalized dimension tables. Each dimension is a single table, so joins stay simple ...
You set a time to live with EXPIRE, SETEX or PEXPIRE. Redis removes expired keys lazily on access and also runs a background sampling cycle that actively deletes expired ...
An index is a B-tree structure storing a sorted subset of a collection's fields, letting the planner find documents without scanning everything. Without an index a query ...
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.