Tip 1 : Prepare for Data Structures consistently
Tip 2 : Try solving case studies and coming up with a design solution
Tip 3 : Have a good database knowledge
Tip 1 : Highlight your contribution to your previous projects and be prepared to tell the story behind them
Tip 2 : Use impactful action words
Online test similar to solving questions ls on hackerrank. Need to write performant code to pass test cases.



if Ayush want to study 6 chapters in 3 days and the time that each chapter requires is as follows:
Chapter 1 = 30
Chapter 2 = 20
Chapter 3 = 10
Chapter 4 = 40
Chapter 5 = 5
Chapter 6 = 45
Then he will study the chapters in the following order
| day 1 : 1 , 2 | day 2 : 3 , 4 | day 3 : 5 , 6 |
Here we can see that he study chapters in sequential order and the maximum time to study on a day is 50, which is the minimum possible in this case.
The interviewer called, Started casually and slowly move to technical questions. Questions were On topics like arrays, filtering and sorting. SQL questions are also there.



Given a case study and asked to design a database system around a problem. After that the interviewer change the scenarios and observed how I updated my schema while maintaining the scalability of the system. Two other questions were also there for which pseudocode had to be written



1) All codes are binary strings.
2) Each code should be able to determine its corresponding character uniquely.
3) The total numbers of bits used to represent the message are minimized.
If there are multiple sets of valid Huffman codes for a message. You can print any of them.
Consider the array ARR = [ 1, 4, 2 ] having 3 elements.
The array containing Huffman Codes for the above array will be [ '10', '0', '11' ]. Other Valid Huffman Codes are [ '01', '1', '00' ], [ '00', '1', '01' ] etc. Codes like [ '1', '0', '01' ], [ '1', '10' , '0' ] are some of the invalid Huffman Codes.
This round was the final round which included discussion of the facilities salary and other benefits
What are your plans for higher studies?
Why do you want to join this company?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL clause is used to specify the conditions in a query?