Just be confident during interview and if you are stuck in between any question, then ask for a hint from the interviewer. The practice is key for success, so practice hard for Data Structures and Algorithms coding problems on Coding ninjas as it is the best platform for coding.
Mention all internships which you have done, as it increases your chances of shortlisting your resume. Also just write that skills which you are pretty confident about.
This round was the online coding test conducted on the platform Mettl. The languages allowed were C, C++, Java and Python. There were three questions. One was of graphs (Depth-first search), other was a big integer problem and the third was a string problem.
You are given an array consisting of 'N' integers. You have to find the fourth largest element present in the array.
This was a pen and paper subjective interview round. You were expected to write full code on paper. Make sure you use proper names for the variables and write comments explaining very clearly what the code does. Also, try writing code in good handwriting which can be understood by the interviewer.
Given an array. Replace all the elements of the array with the product of all numbers except the number at that position. Do not use the division operator.
Find the total number of palindromic substrings in a given string.
The interview took place in the morning and the interviewer was very friendly.
I use tree traversal to solve this question with recursion. Do a traversal of the given tree. In the traversal, replace the value of the current node, with the sum of the values of left and right node (if they exist). Recursively follow for left and right node. And in the end, return the preorder of tree. He was satisfied with the approach.
The HR Interview round was held in the morning and it was right after my technical interview.
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?