1. A shopkeeper gives 10% discount on a ₹200 article and still gains 10%. What is the cost price?
2. If ‘A + B’ means ‘A is the mother of B’, and ‘A × B’ means ‘A is the sister of B’, then what does ‘P + Q × R’ mean?
3. What will be the output of this code?x = 3y = xx = 5print(y)
x = 3y = xx = 5print(y)
4. Which SQL clause is used to filter rows based on a condition?
5. Which data structure is used for undo operations in text editors?
6. Which of the following is not a type of scheduling algorithm?
7. Which OOP concept means “one interface, many implementations”?
8. Choose the correct sentence:
9. What’s the best response to “What’s your biggest weakness?” in an interview?
10. How many times will print("Hi") run?for i in range(1, 5): for j in range(1, 3): print("Hi")
for i in range(1, 5): for j in range(1, 3): print("Hi")