Tip 1: Strengthen Problem-Solving Skills – Focus on understanding patterns and breaking problems into smaller steps before jumping into code.
Tip 2: Revise Core Concepts Regularly – Revisit data structures, algorithms, OOP, and SQL to keep your fundamentals sharp.
Tip 3: Learn from Mistakes – Treat errors as stepping stones, not setbacks.
Tip 1: Line Summary – State what you do and the value you bring.
Tip 2: Bullet Achievements – Start each point with action verbs like Developed, Optimized, Delivered.
Tip 3: Keywords – Use relevant terms from job postings. Recruiters and ATS systems rely on these to filter candidates.
Choose the correct synonym of "Meticulous".
A) Careless
B) Precise
C) Aggressive
D) Casual
She insisted ___ completing the task before leaving.
A) for
B) on
C) in
D) at
Identify the grammatically correct sentence:
A) Each of the students have submitted their assignment.
B) Each of the students has submitted their assignment.
C) Each of the students have submitted his assignment.
D) Each of the students has submitted his assignment.
Choose the correct meaning of the idiom:
"Hit the nail on the head"
A) To make a mistake
B) To be exactly correct
C) To work hard
D) To ignore something
If I would have known about the meeting, I would have attended it.
A) If I would have known
B) about the meeting
C) I would have attended it
D) No error
Number Series:
2, 6, 12, 20, 30, ?
A) 36
B) 40
C) 42
D) 44
A is the brother of B. C is the mother of B. D is the father of A.
How is C related to D?
A) Sister
B) Wife
C) Mother
D) Daughter
If CAT = 24 and DOG = 26, what is BAT?
A) 21
B) 22
C) 23
D) 24
A person walks 5 km north, then 3 km east, then 5 km south.
How far is he from the starting point?
A) 3 km
B) 5 km
C) 8 km
D) 10 km
Statement: All programmers are logical thinkers.
Conclusion: Some logical thinkers are programmers.
A) True
B) False
C) Cannot be determined
D) None
If 20% of a number is 50, what is the number?
A) 200
B) 250
C) 300
D) 150
A train 200m long passes a pole in 10 seconds. What is its speed?
A) 72 km/hr
B) 60 km/hr
C) 50 km/hr
D) 80 km/hr
Simple Interest on ₹5000 at 10% per annum for 2 years = ?
A) 1000
B) 1200
C) 900
D) 800
What is the probability of getting a tail when tossing a fair coin twice?
A) 1/2
B) 1/4
C) 3/4
D) 1
If A can complete a task in 10 days and B in 15 days, together they finish in:
A) 5 days
B) 6 days
C) 7 days
D) 12 days
Time Complexity of Binary Search?
A) O(n)
B) O(n log n)
C) O(log n)
D) O(1)
Which is NOT a pillar of OOP?
A) Inheritance
B) Encapsulation
C) Polymorphism
D) Compilation
Which SQL clause is used to filter grouped records?
A) WHERE
B) GROUP BY
C) HAVING
D) ORDER BY
Which data structure uses FIFO?
A) Stack
B) Queue
C) Tree
D) Graph
Which keyword is used to inherit a class in Java?
A) implement
B) extends
C) inherit
D) include
What is the time complexity of the following code?
for(int i = 1; i < n; i *= 2) {
for(int j = 0; j < n; j++) {
printf("%d", j);
}
}
A) O(n)
B) O(n log n)
C) O(n²)
D) O(log n)
Which scenario best represents runtime polymorphism?
A) Method overloading
B) Method overriding
C) Constructor overloading
D) Static binding
What will be the output?
SELECT COUNT(*)
FROM Employees
WHERE Salary > 50000 OR Salary < 50000;
A) Only employees earning > 50000
B) Only employees earning < 50000
C) All employees except those earning exactly 50000
D) All employees
Which data structure is most suitable for implementing undo/redo functionality?
A) Queue
B) Stack
C) Linked List
D) Tree
Which normal form removes transitive dependency?
A) 1NF
B) 2NF
C) 3NF
D) BCNF
If the ratio of ages of A and B is 4:5 and after 6 years it becomes 5:6, what is A’s present age?
A) 24
B) 30
C) 18
D) 20
Two dice are thrown. What is the probability that the sum is 8?
A) 5/36
B) 1/6
C) 6/36
D) 1/9
Five people, P, Q, R, S,T sit in a row.
P sits next to Q.
R sits at one end.
T is not next to R.
Who must sit in the middle?
A) P
B) Q
C) S
D) Cannot be determined
Choose the correct sentence:
A) The data are accurate.
B) The data is accurate.
C) The datas are accurate.
D) The datas is accurate.
Choose the correct inference:
Statement:
"All high-performing developers practice coding daily."
Which must be true?
A) Anyone who practices daily is high-performing
B) Some high-performing developers may not practice daily
C) Every high-performing developer practices daily
D) All developers practice daily






Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams.
'triangle' and 'integral'
'listen' and 'silent'
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct.




Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?