Tip 1 : practice on subject in which you are strong enough and unbeatable
Tip 2 : Always go through previous interview experiences on internet
Tip 3 : follow continuety
Tip 1 : mention only you strong topics ,don't include anything you don't know about
Tip 2 : always make your resume one pager
Yes consist of two code and questions MCQ of ds ,algo,Linz,shell,English and DBMS
Test happens with your webcam access.
F(n) = F(n - 1) + F(n - 2),
Where, F(1) = 1, F(2) = 1
"Indexing is start from 1"
Input: 6
Output: 8
Explanation: The number is ‘6’ so we have to find the “6th” Fibonacci number.
So by using the given formula of the Fibonacci series, we get the series:
[ 1, 1, 2, 3, 5, 8, 13, 21]
So the “6th” element is “8” hence we get the output.
Late night around at 8 pm
Environmental is positive.
Interviewer made me feel positive
a) push(int x) : 'x' has to be inserted in the priority queue. This has been implemented already
b) pop() : return the maximum element in the priority queue, if priority queue is empty then return '-1'.
We perform the following operations on an empty priority queue:
When operation push(5) is performed, we insert 1 in the priority queue.
When operation push(2) is performed, we insert 2 in the priority queue.
When operation pop() is performed, we remove the maximum element from the priority queue and print which is 5.
When operation push(3) is performed, we insert 1 in the priority queue.
When operation pop() is performed, we remove the maximum element from the priority queue and print which is 3.
3 bulbs are there you have to find the correct switch for those bulbs If bulbs are outside the room and switch are inside the room
Morning time
Positive environment
Nice interviewer
How do you work under pressure?
Are you willing to relocate or travel?
What do you know about us or our company?
Tip 1 : Share only truth
Tip 2 : Don't hide anything they will caught you up
Tip 3 : Behave natural don't do show off
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which is a DDL command in SQL?