Govt. Exams
Entrance Exams
3NF (Third Normal Form) ensures all non-key attributes depend only on the primary key, eliminating transitive dependencies.
Constant O(1) is fastest, followed by logarithmic O(log n), linear O(n), quadratic O(n²), exponential O(2ⁿ), and factorial O(n!) which is slowest.
Deadlock is a situation where multiple processes cannot proceed because each holds resources needed by others, creating a circular wait condition.
MongoDB's document-based model allows flexible schemas for unstructured data and supports horizontal scaling, unlike rigid relational schemas.
Overfitting occurs when a model learns the training data including its noise and irregularities, performing poorly on unseen test data.
A tree is a special case of a graph with no cycles. It has n nodes and n-1 edges, forming a hierarchical structure.
PaaS provides a complete development and deployment environment in the cloud, including pre-configured tools and frameworks.
ACID is a fundamental database property: Atomicity (all-or-nothing), Consistency (valid state), Isolation (concurrent independence), Durability (permanent after commit).
Quick Sort has O(n log n) average-case complexity, making it most efficient for random data. Though worst-case is O(n²), randomized pivot selection minimizes this risk.
Both syntaxes are valid in SQL. The first creates a composite index, while the second creates a unique composite index.