Debugging questions will be of 7 questions for 21 minutes. Ex: An array will be sorted in descending you need to change the code to sort it in ascending.
Software Development Engineer Interview Questions
33,160 software development engineer interview questions shared by candidates
Logic questions/debugging in the first section. A work simulation in the 2nd part with a coding challenge.
Write a function/method with this signature: bool MyFunc(string term, string input) {} The method should return true if the search term is found in the input string, even when there are other characters in between. Examples: "aba", "bbbbabbxxxxxxbb" returns false "aba", "bbbbabbxxxxxxab" returns true Basically, do I see an 'a', then 'b', then another 'a' before I run off the end of the input string?
Remove duplicates from a linked list. O(n) time.
Tell me about a time when you disagreed with the work direction you were given, and how you resolved it.
(onsite questions) Tell me about the code you wrote? Walk me through how it works. Is there anyway you think you can optimize it?
They asked from data structures and algorithms, oops, os, dbms
Design a connection pool
An array consists of elements where each element appears an even number of times. Only 1 element appears odd number of times. Find that number
You want to keep the largest 1000 integer numbers from incoming pockets containing integers. Please write a program on how to do it.
Viewing 371 - 380 interview questions