Govt. Exams
Entrance Exams
Ephemeral (short-lived) is opposite to Permanent (long-lasting). Similarly, Verbose (using many words) is opposite to Concise (using few words). The analogy requires antonyms.
The pattern is n(n+1) where n = 1,2,3,4,5,6... First term: 1×2=2, Second: 2×3=6, Third: 3×4=12, Fourth: 4×5=20, Fifth: 5×6=30, Sixth: 6×7=42.
Let distance = d. Time = Distance/Speed. Going: d/60, Returning: d/40. Total: d/60 + d/40 = 10. Taking LCM: (2d + 3d)/120 = 10, so 5d/120 = 10, therefore d = 240 km.
For independent events: P(A and B) = P(A) × P(B) = 0.4 × 0.3 = 0.12
A firewall is a security barrier that filters network traffic based on predetermined rules to protect systems from unauthorized access
Agile methodology emphasizes iterative development, continuous feedback, and adaptability rather than fixed lengthy development cycles
Normalization is the process of organizing data to reduce redundancy and dependency, improving database integrity
ArrayList uses arrays (O(1) random access) while LinkedList uses nodes (O(n) random access but O(1) insertion/deletion at ends)
Cloud computing is characterized by remote resources, not physical hardware on-premises. All others are cloud characteristics
Polymorphism allows objects to take multiple forms - same method name can behave differently in different contexts (method overriding, overloading)