Tip 1: Focus on your basics and build a strong foundation.
Tip 2: Stay consistent with your preparation.
Tip 3: Take one step at a time and keep improving.
Tip 1: Put only those things on your resume that you are confident about.
Tip 2: Keep your resume minimal and to the point.
It included aptitude, reasoning, and two coding questions. My assessment was in the first slot from 9 AM to 12 PM on the ION Digital platform. The environment was a bit difficult to understand at first, but I got familiar with it afterwards.
Write a program that takes the temperature (in Celsius) as input and determines whether the weather is Cold or Not Cold.
• If the temperature is below 15°C, print “Cold”.
• Otherwise, print “Not Cold”.
1. Understand the problem
We need to check the temperature and decide the weather condition.
• If temperature < 15°C → Cold
• Otherwise → Not Cold
2. Take input
Ask the user to enter the temperature value (in Celsius).
3. Store the value
Save the entered temperature in a variable (for example, temp).
4. Apply condition
Use an if-else statement:
• Check if temp < 15
• If true → weather is Cold
• Else → weather is Not Cold
5. Display the result
Print the appropriate message based on the condition.
1. Start from index 0 with:
• Empty subsequence
• Sum = 0
2. For every element in the array, do two things:
• Include the element
• Exclude the element
3. After choosing, move to the next index.
4. When you reach the end of the array:
• If sum == K → print/store the subsequence
• If sum ≠K → ignore it
5. After exploring one choice, remove the element (backtrack) and try the other choice.
6. Repeat until all possibilities are checked.
For this round, my slot was the second one, scheduled at 12:30 PM.
The ask me to solve a sql query:
You are given three tables:
1. Students
• student_id
• student_name
• department_id
2. Departments
• department_id
• department_name
3. Marks
• student_id
• subject
• score
⸻
Task:
Write a SQL query to display:
• student_name
• department_name
• subject
• score
Only for students who scored more than 75 marks.
Tip 1: Search for given data in tables.
Tip 2: Identify which joins to be used.
Tip 3: Focus on syntax.
Tip 1: Focus on what they are asking.
Tip 2: Give them the answer they want you to give.
Tip 3: Never give a negative statement.

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?