Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do at least 2 projects
Tip 1 : Have some projects on resume
Tip 2 : Do not put false things on resume
This round consists of 30 mcqs and 2 coding question.
What is Network Cabling?
What is a ‘subnet’?
What is DNS?
What is Network Topology?
n = 5, k = 2 and arr[] = {6, 5, 4, 8, 7}
The array elements in sorted order are [4, 5, 6, 7, 8]. The ‘2-nd’ smallest element in the array is 5, so the answer is 5.
1. Don’t print anything. Return the value of ‘k-th’ smallest element.
2. ‘k’ is a positive integer and not greater than the size of the array.
3. The array ‘arr’ is unsorted, and all the elements of the array are distinct.
Follow the given steps to solve the problem:
Sort the input array in the increasing order
Return the element at the K-1 index (0 – Based indexing) in the sorted array
1. The array follows 0-based indexing, so you need to return the 0-based index of the element.
2. Note that the element at the equilibrium index won’t be considered for either left sum or right sum.
3. If there are multiple indices which satisfy the given condition, then return the left-most index i.e if there are indices i,j,k…. which are equilibrium indices, return the minimum among them
4. If no such index is present in the array, return -1.
Use two loops. The Outer loop iterates through all the element and inner loop finds out whether the current index picked by the outer loop is equilibrium index or not
Tell us about yourself and your family?
Where do you see yourself in 5 years?
Why do you think you are the right choice for this role?
What is your expected salary?
Can you migrate or commute to any other city other than Delhi-NCR?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL keyword removes duplicate records from a result set?