which grade would you give yourself in Python? And what percentage of Python users do you think would have the same grade?
Forward Deployed Engineer Interview Questions
696 forward deployed engineer interview questions shared by candidates
How to sample a stream of integers with uniform distribution
find the fastest among 25 racers in a 5 racer track? what is the best way to find it ? and how to find it in the min number of races ? then how to get the first 2 racers
Nothing atypical, standard programming interview questions.
Checking for duplicates in a list, where the list contained a classes with 3 different attributes
There were no specific questions like the general interview questions most companies ask. The questions were either of technical problem solving nature or tailored to the interviewee's experience.
Check if a linked list is a palindrome
How would you store email addresses for a web service?
The programming exercise was a typical algorithmic problem
Balanced Chemical Reactions For a chemical reaction represented by a string, verify that the chemical reaction is a balanced reaction (i.e. that we didn't somehow lose or gain an atom during reaction). If the reaction is balanced return true, otherwise return false. For example, for the hydrogen combustionreaction: '2 H2 + O2 -> 2 H2O' would output true because the number of atoms in the reactants match up with the number of atoms in the product. However, for the precipitation of silver-chloride: 'NaCl + AgNO3 -> NaNO3 + Ag' the output should be false because we're missing the chlorine atom in the products. The reactancts and products will always be separated by a right pointing arrow "->" and the individual molecules within the reactants/products are always separated by a "+" sign. Multiple molecules are represented by a number and space prefacing the molecule (e.g., "2 H20").
Viewing 431 - 440 interview questions