Voce faria de outra forma esta soluçao?
Software Engineer Intern Interview Questions
9,764 software engineer intern interview questions shared by candidates
what is normalization ? explain
Q: What does normalized data mean in relational databases?
Q: What is the most challenging task you've encountered?
Given a pre-order list of operations along with operands, we need to compute the result. Also, we need to handle error checks as well as follow object-oriented coding Eg: +98*8.
Given a i-order list of operations along with operands, we need to compute the result. Converting inorder operations to post order operations was a fundamental question? Like before we need to handle error checks as well as follow object-oriented coding
Given a 2d array sorted in increasing order from left to right and top to bottom, what is the best way to search for a target number?
it is basic algorithms. The first is a sort algorithm. There is an array with a million integer. The integer's length is 10 bit. Find an algorithm with run complexity of N. The second is about detect if there is any circle in a linkelist
Given a keyword (ex: "abc") and a list of words (ex: "aabc", "cab", "ab"), write a function that will return all words in the list that are the same/anagrams of the keyword. In this case, "cab" would be the only word returned. Later changes to the function were added: numbers and symbols might be included in the words but were to be ignored ("ca2b" still matched "abc"), make the function not case sensitive ("A" == "a"), etc...
Reverse every k nodes in given Linked List.
Viewing 1061 - 1070 interview questions