Govt. Exams
Entrance Exams
CI = P(1 + r/100)^n - P = 8000(1 + 10/100)^2 - 8000 = 8000(1.1)^2 - 8000 = 8000(1.21) - 8000 = 9,680 - 8,000 = ₹1,680.
log₂(8) means 2^? = 8. Since 2³ = 8, the answer is 3
String slicing s[1:4] returns characters from index 1 to 3 (4 is exclusive): 'e', 'l', 'l' = 'ell'
An exception is an event that occurs during program execution that disrupts the normal flow, requiring special handling
API stands for Application Programming Interface - a set of rules that allows different applications to communicate
Version control systems track code changes over time and facilitate team collaboration by managing different versions
HTTPS is HTTP with encryption/security using SSL/TLS protocols for secure communication
A Stack uses LIFO principle where the last element added is the first one to be removed
The '//' operator performs floor division, which returns 3 (the integer part of 10/3)
SQL (Structured Query Language) is used for managing and querying relational databases