Tip 1 : Practice more coding questions.
Tip 2 : Focus on logic.
Tip 3 : A strong single project.
Tip 1 : Should be crisp and error free.
Tip 2 : Single page resume is preferred.
It was conducted in a computer lab at the morning. The Environment was really good as there were no distractions. The responsible person of this round was helpful when we faced any issues like computer break down, etc.



‘ARR1’ = [3 6 9 0 0]
‘ARR2’ = [4 10]
After merging the ‘ARR1’ and ‘ARR2’ in ‘ARR1’.
‘ARR1’ = [3 4 6 9 10]
Step 1 : Create two arrays first.
Step 2 : Sort them using inbuilt functions.
Step 3 : Then, I gave a logical condition to merge it.



The counter is hit at 'T' = 1
The counter is hit at 'T' = 50
The getHit function at 'T' = 100 returns 2
The counter is hit at 'T' = 250
The getHit function at 'T' = 100 returns 2
Step 1 : First, import the required time utility in Java.
Step 2 : Parse the time.
Step 3 : Write a logical condition to find the difference of it.
It was a face to face technical round. The questions were related to the project mentioned in my CV. And, questions related to operating systems and DBMS.



1. enqueue(x) : Adds an item x to rear of the queue
2. dequeue() : Removes an item from front of the queue
3. size() : Returns number of elements in the queue.
4. front() : Finds the front element.
Let the given queue be { 1, 2, 3, 4, 5 } and K be 3.
You need to reverse the first K integers of Queue which are 1, 2, and 3.
Thus, the final response will be { 3, 2, 1, 4, 5 }.
Tip 1 : Go through the basic concepts of DBMS
Tip 2 : Also focus on the core engineering subjects
It was an online round. Fully focused on the communication skill and the attitude, More likely it was a personality Test. Few Questions asked were Introduce yourself and some scenarios were given to find out solutions.
Tip 1 : Stay Honest
Tip 2 : Reply to the questions asked in a positive way with confidence

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?