Tip 1: Start understanding the fundamentals of any one programming language (OOPs would be beneficial)
Tip 2: Try to write one code every day for any problem you see or come across be it making a simple calculator or a function that does iteration
Tip 3:Break your problem set into single units to have a clear understanding and practice more different types of questions rather than sticking to one category and practising 50 problems. Instead, take one topic and solve 10 questions and move on to the next topic.
Tip 1: Write more about the projects you've actually done & the technologies you've used in them.
Tip 2: Always stick to a single-page resume format
It was an MCQ round where-in it consists of 90 questions divided into different categories as stated below and it was a general screening round to shortlist the candidates.
There was a function given with two inputs. We have to select what is the correct output from the given code with the given set of inputs
First thing is to go through the given code and identify where exactly the inputs are performing operations and what exactly they are doing to the inputs. Secondly, keep a pen and paper handy and write down the inputs and the operations they're doing in the paper and see what answer you're getting with the inputs given. Once it is done, check your final answer with the choices given.
From a group of 7 men and 6 women, five persons are to be selected to form a committee so that at least 3 men are there on the committee. In how many ways can it be done?
Ans- 645
_________ operations do not preserve non-matched tuples.
Ans- Inner Join
Time Complexity of Quick sort Algorithm?
Case Time Complexity
Best Case O(n*logn)
Average Case O(n*logn)
Worst Case O(n2)
It was a tool-based language test consisting of 4 sections- reading, listening, speaking & writing. We have to install the app, login with our unique IDs and temporary password and start answering each section
There was a conversation going on between two friends and we have to identify what the other person said in the given blank and mark the same in the choice.
Tip 1: Make sure the earphones/headphones you're wearing are clear and audible
Tip 2: Keep your attention on the conversation and on the fill-ups so that you can identify the answer
This round was conducted during the evening time of the day since the delegates came down to the university the same day, and they started with the process the same day. The technical interview took some 30 minutes.



F(n) = F(n-1) + F(n-2),
Where, F(1) = F(2) = 1.
For ‘N’ = 5, the output will be 5.
The Fibonacci Sequence is the sequence of numbers where the next term is the sum of the previous two terms. The first two terms in the Fibonacci series are 0, accompanied by 1. The Fibonacci sequence: 0 , 1, 1, 2, 3, 5, 8, 13, 21.



If two numbers have the same frequency then keep the one that was present before the other in the original given list (array) first.
Input: arr[] = {2, 5, 2, 8, 5, 6, 8, 8}
Output: arr[] = {8, 8, 8, 2, 2, 5, 5, 6}
Explanation :
When you sort the array based on the decreasing order of the frequency of repetition of integers in the original array,
you’ll find that the element ‘8’ is the integer with the most repeated values therefore it would be arranged first after which since both 2 and 5 have the same number of repeated
values in the original array but since the 2 arrived first so we will first arrange 2 and then 5 in our resultant array, while would be the last element after sorting here.
Difference between abstraction and encapsulation
SQL Joins
(INNER) JOIN: Returns records that have matching values in both tables
LEFT (OUTER) JOIN: Returns all records from the left table, and the matched records from the right table
RIGHT (OUTER) JOIN: Returns all records from the right table, and the matched records from the left table
FULL (OUTER) JOIN: Returns all records when there is a match in either left or right table

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?