Tip 1 : Get strong hold of basic subjects like Computer Networks, OS, DBMS
Tip 2 : Practise enough coding approx 30 from every topic of DSA
Tip 3 : Have understanding of how library function works
Tip 1 : Keep resume short, preferably 1 page
Tip 2 : Mentioning multiple projects (self done) add weightage to your resume
IDE was smooth and support all required libraries.
Coding questions are standard medium level.


1 ‘X’: Enqueue element ‘X’ into the end of the nth queue. Returns true if the element is enqueued, otherwise false.
2: Dequeue the element at the front of the nth queue. Returns -1 if the queue is empty, otherwise, returns the dequeued element.
Enqueue means adding an element to the end of the queue, while Dequeue means removing the element from the front of the queue.
1 - Implement a Circular queue.
2 - Iterate the queue n time



This is a problem of graph.
1 - take smallest denomination as root of the graph.
2 - take second smallest denominations and make edge from root.
3 - backtrack to root from each node and check weather the addition of nodes < amount
4 - if amount < addition of nodes then continue from step 2.
5 - else track all path from root ,and coun the no. Of tracks whose node sums are equal to amount
Questions from basic subjects are asked, like explain OOP concepts
Two coding questions are given



Input: linked list = [1 2 3 4] , k = 2
Output: 3 4 1 2
Explanation:
We have to rotate the given linked list to the right 2 times. After rotating it to the right once it becomes 4->1->2->3. After rotating it to the right again, it becomes 3->4->1->2.



Given 'N' : 5 (number of packets) and 'M' : 3 (number of students)

And chocolates in each packet is : {8, 11, 7, 15, 2}
All possible way to distribute 5 packets of chocolates among 3 students are -
( 8,15, 7 ) difference of maximum-minimum is ‘15 - 7’ = ‘8’
( 8, 15, 2 ) difference of maximum-minimum is ‘15 - 2’ = ‘13’
( 8, 15, 11 ) difference of maximum-minimum is ‘15 - 8’ = ‘7’
( 8, 7, 2 ) difference of maximum-minimum is ‘8 - 2’ = ‘6’
( 8, 7, 11 ) difference of maximum-minimum is ‘11 - 7’ = ‘4’
( 8, 2, 11 ) difference of maximum-minimum is ‘11 - 2’ = ‘9’
( 15, 7, 2 ) difference of maximum-minimum is ‘15 - 2’ = 13’
( 15, 7, 11 ) difference of maximum-minimum is ‘15 - 7’ = ‘8’
( 15, 2, 11 ) difference of maximum-minimum is ‘15 - 2’ = ‘13’
( 7, 2, 11 ) difference of maximum-minimum is ‘11 - 2’ = ‘9’
Hence there are 10 possible ways to distribute ‘5’ packets of chocolate among the ‘3’ students and difference of combination (8, 7, 11) is ‘maximum - minimum’ = ‘11 - 7’ = ‘4’ is minimum in all of the above.
Interview process was smooth.
Design the schemas for an e- commerce website.
Tip 1 : Draw the ER diagram then start with schema
Tip 2 : Consider all perspectives for Customer, seller, supplier
Tip 3 : Now map carefully the tables
Basic HR questions are asked .
Your Hobbies, where you see yourself in five years, strength and weekness are asked.
Tip 1 : Be Honest

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?