Find a longest Palindrome in a given string.
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,484 software engineer interview questions shared by candidates
Find depth of a binary tree
Reverse a linked list
Given a list of points in 2D and a single reference point, find k nearest neighbors. No code required (iirc).
given a large array of int return the length of the longest increasing(non-necessarily-adjacent) sub-sequence
Given an array of integers arranged in a way that they are first in a strictly increasing sequence and then after a certain point they are arranged in a strictly decreasing sequence. Find the max value in that array For ex: [3,6,8,13,20,35,33,30,21,17,14,2,1,-2] : 35 is the max in this array
Find the max number in an array between start and end. The function would like: findMaxbetween(start, end, array): return maxNumber
Write code to find the nth fibonacci number.
Coding the fibonacci algorithm.
Given a 5x5 board containing random characters, find all words that can be formed from consecutive adjacent (diagonals count) characters.
Viewing 1711 - 1720 interview questions