Many data structure and algorithmic questions
Development Engineer Interview Questions
37,463 development engineer interview questions shared by candidates
Tell me the basic component of Object Orient Programming.
You're trapped in a room with 3 switches for 10 minutes. There are 3 light bulbs outside the room , but you don't know which switch corresponds to which light bulb. What do you do in the 10 minutes you're in the room to figure out which switch corresponds to which light bulb when you walk out?
I have two glasses of 3 ounces and 5 ounces. Give me 4 ounces of liquid
Write pseudocode to swap two numbers without third variable .
Given an expression in the form say "a+b-c" and the values of a,b and c evaluate the expression.
Given a sorted array of integers, write a function to remove any duplicates (e.g. 1,2,3,3,3,4,4,5 would go to 1,2,3,4,5)
Design for a google doc style spreadsheet, with a focus on how to handle multiple concurrent edits and formulas on the spreadsheet.
Solve: M is a 2D matrix of integers (nXm) they are sorted in both row and column Write a function search(int s) that return the exact location of the number or Null using lgn
1. Given a non-negative integer array that is then shuffled and 1 element is removed, find which element was removed. 2. Assume you are designing/writing code for some small business software how would you go about creating a clean, extensible method for calculating sales tax that can be extended easily to work in different parts of the world. 3. (Two separate questions) 3a. Given an integer array, remove the duplicate values and return an integer array 3b. Test a dice role generator method 4. Design a system for tracking employee applicants through the interview process
Viewing 661 - 670 interview questions