Govt. Exams
Entrance Exams
2NF eliminates partial dependencies where non-key attributes depend on part of a composite key. 3NF further eliminates transitive dependencies.
A balanced BST maintains O(log n) search complexity by keeping the tree height logarithmic relative to node count.
TLS 1.3 is the latest, most secure protocol standard for encrypting data in transit, replacing older protocols like SSL and TLS 1.2.
A confusion matrix shows True Positives, True Negatives, False Positives, and False Negatives, enabling comprehensive evaluation of classification accuracy.
Docker containers package applications with dependencies, ensuring identical execution across different environments.
Eventual consistency in cloud systems means that data replicas will converge to the same state after all updates have propagated.
Hash Map provides O(1) lookup while Doubly Linked List maintains insertion order and allows O(1) removal/reordering.
WHERE clause filters individual rows before GROUP BY, while HAVING filters aggregated groups after GROUP BY.
CAP theorem proves that distributed systems can guarantee at most 2 of 3 properties: Consistency, Availability, and Partition tolerance.
Relational databases have fixed schemas. Flexible schemas are a characteristic of NoSQL databases like MongoDB.