Question1 /** * Given a nested list of integers, returns the sum of all integers in the list weighted by their depth * For example, given the list {{1,1},2,{1,1}} the function should return 10 (four 1's at depth 2, one 2 at depth 1) * Given the list {1,{4,{6}}} the function should return 27 (one 1 at depth 1, one 4 at depth 2, and one 6 at depth 3)
Software Engineer Interviews
Software Engineer Interview Questions
Software engineers write programs to design and develop computer software. Interviews are highly technical, so come ready to work through coding problems and math brainteasers. The specific questions you are asked will depend on what type of programming position you are looking for. Try researching a specific software discipline such as web development, application development, or system development.
Top Software Engineer Interview Questions & How to Answer
Question #1: How would you describe your programming task process?
Question #2: Which programming languages do you know and prefer?
Question 3: What is an example of a successful project that you completed?
419,183 software engineer interview questions shared by candidates
test life cycle in assurance
Explain a few technical terms like markov chain, singleton, mvc, bloom filter, opportunistic lock, row-level locking
Given a list of Strings, return all groups of acronyms.
What is the efficiency of finding an element in an unsorted array of strings
Find the largest sum of contiguous numbers in an array
Design an alert system. You have 500,000 hotels you represent, and about 250,000 are visited each day. You want to track hotel page visits such that, if more than 10 visitors per a) 5 minutes, b) 1 hour, and c) 24 hours occur, then a (different for each time period) "alert" appears when someone visits one of those "hot" hotel pages. Don't worry about the UI part, just design the underlying alert system. Then optimize your solution for space.
Given an input stream of an indeterminate length, how do you return a random member of that stream (with equal probability for each), given that you're not allowed to store more than a constant number of inputs, and you can only go through the inputs once.
1.How much testers working? If you tell 4 testers , he will ask why 4 too many.. If you tell two why only two he will ask? 2.Why your company dont have agile? 3.If you tell that you have stand up meeting in non agile, he will ask, in agile only stand up meeting happen, he will reply.. The thing is stand up meeting is normal in all company, it is not a goverment policy that Agile process only has stand up meeting.. 4. What is your project dead line? 5.Do you have any fight with your team lead? So you planned to quit?
Do an in-order BST walk without additional data structures and without recursion.
Viewing 811 - 820 interview questions