Tip 1 : Have great knowledge of Technical Skills
Tip 2 : Should have knowledge of your academic projects
Tip 1 : Resume should be one page
Tip 2 : Mention all technical skills.
This Round consists of Both technical and Non-technical round



Given an integer array Arr of size N the task is to find the count of elements whose value is greater than all of its prior elements.
Tip 1 : 1st element of the array should be considered in the count of the result.
Tip 2 : For example :
Arr[]={7,4,8,2,9}
As 7 is the first element, it will consider in the result.
Tip 3 : 8 and 9 are also the elements that are greater than all of its previous elements.
Since total of 3 elements is present in the array that meets the condition. Hence the output = 3.
This is pure technical Round, asked questions from Academic projects and programming language concepts



Given a pointer to the head node of a linked list, the task is to reverse the linked list. We need to reverse the list by changing the links between nodes.
Tip 1 : Initialize three pointers prev as NULL, curr as head and next as NULL.
Tip 2 : Iterate through the linked list. In loop, do following.
// Before changing next of current,
// store next node
next = curr->next
// Now change next of current
// This is where actual reversing happens
curr->next = prev
// Move prev and curr one step forward
prev = curr
curr = next



Given an integer array, sort it using the merge sort algorithm.
Tip 1 : Divide the unsorted array into n subarrays, each of size 1 (an array of size 1 is considered sorted).
Tip 2 : Repeatedly merge subarrays to produce new sorted subarrays until only 1 subarray is left, which would be our sorted array.
This is an HR round consists questions on Personality development

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: