Reverse the individual words in a string (words are delimited by spaces). Example - "Hello world" becomes "olleH dlrow".
Sdet Interview Questions
4,387 sdet interview questions shared by candidates
Shuffle Linked List
Given the root of a binary search tree, link all the nodes at the same level, by using an additional Node* level.
How can you write a recursive function calculating the exponential of a number?
The interviewer confused me like hell when describing the question. Every node of the tree has a pointer to its left most child. each node has a pointer to its next sibling. Its a BST. Find the smallest value in the tree.
How to insert a Node in a Linked list.
All sorts of brain teasers (monte hall problem, etc)
Design and implement a "inner join" function using 2 sorted lists/arrays. Make it run in O(n) time.
Was interviewed by a Software engineer. It was basically a "highest sum in an array" question disguised in an Oscar health context. Given an array of insulin readings for any given period. Write a function that will return true if an insulin reading is below 10. Array = [90, 92, 93, 91, 104, 102, 102, 106] The input was: Console.log(insulinReadingFunction(Array, 10) == True);
How can you copy files from one directory to another using Python?
Viewing 71 - 80 interview questions