Tip 1 : Read puzzles.
Tip 2 : Learn about Linux fundamentals and commands thoroughly.
Tip 3 : Learn Networking basics.
Tip 1 : Mention at least 1 project
Tip 2 : Do not put false things in resume.
Tip 3 : Mention any internship experience (if any)
MCQs consisted of easy to medium questions



‘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 : Created an array arr[] of size n1 + n2.
Step 2 : Simultaneously traversed over arr1[] and arr2[].
Step 3 : Pick the min(arr1[i], arr2[i]), copy this to the next position in arr[], and move ahead in arr[] and the array whose element is picked.
Step 4 : If there are remaining elements in arr1[] or arr2[], copy them also in arr[].



a) Duplicate elements may be present.
b) If no such element is present return -1.
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.
Output: 6
Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.
Step 1 : Sort the array
Step 2 : Return the second largest element, which is not equal to the largest element.
The interview was conducted at 3:00 PM.
The environment was good and the interviewer was polite and experienced.
Imagine you are in a dark room.
How would you find the center of the room?
Tip 1 : Go to one corner.
Tip 2 : Start Counting the steps while moving towards the other corner
Tip 3 : Divide the number of steps by 2.
Tip 4 : Reach the centre by returning back n/2 steps.
What are joins in SQL?
Explain the concept of Normalization.
Tip 1 : Read SQL and DBMS thoroughly.
Tip 2 : Explain using examples.
Tip 3 : Study DBMS theory concepts.
How to create a file using Linux command line?
Explain grep command.
Tip 1 : Practice Linux by using it.
Tip 2 : Learn Linux Commands.

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?