Tip 1 : Be strong with basics
Tip 2 : Be confident
Tip 3 : Be honest
Tip 1: Include only what you know
Tip 2: Keep it brief
It was during afternoon It's an online test
Given employees table query the nth highest or lowest salary from the employee table where salary is a field in the table
Tip 1: Should know the concept
Tip 2:Should practice queries
Tip 3:Should be strong with basics
Question were about all OOPS concepts
Tip 1: Be Strong with the basics
Pseudo codes that includes loops if else conditions were asked
#include int main(){
float x = 0.0;
long int y = 10;
printf("%d", sizeof(y) == sizeof(x+y));
return 0;}
Ans:- output is 0
It was communication round, In this round we discussed about impact of COVID on IT industry
Given a topic should speak on the topic for short duration
Tip 1: Be clear and loud
It was a technical interview



For the following array:
[0 1 1 1 0 0 1]
The output should be [0 0 0 1 1 1 1].
You have to sort the array in place.
Tip 1: Be good with basics



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.
step 1: start
step 2: declare array and left, right, mid variable
step 3: perform merge function.
if left > right
return
mid= (left+right)/2
mergesort(array, left, mid)
mergesort(array, mid+1, right)
merge(array, left, mid, right)
step 4: Stop
What are the pillars of OOPS explain with real world examples
Tip 1: Be clear with OOPS
It was a typical HR round
Introduce yourself
Tell me about strength and weakness
Tip 1: Be genuine

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?