How to write an evaluator for a string like "(1+3 * ( 5 / 4)) and get a numeric result.
Softwareentwickler Python Interview Questions
513,057 softwareentwickler python interview questions shared by candidates
Connect Four is a game where two players take turns dropping their color discs into a vertically suspended grid. The game ends when a player adds a disc to the playing grid that connects four discs of their color. The connected discs can be in a horizontal, vertical or diagonal line. Write a function to be called after every turn that returns true if the game is over (and false otherwise).
Given a big image, how will you pan and zoom into the image in a way so as to focus on the important parts ot the image.
Check if a string which represents a math exercise is balanced in terms of parentheses Remove spaces from a string
Give an example of real world scenario where you see inheritance?
You have 16 race horses and a racetrack which only fits 4 horses at one time. Find the top 4 horses in the fewest number of races.
sort an array N consists of four numbers, each number can be repeated k times, where k < n. Example: sort 1111144422223 to 1111122223444. Try to be as efficient as you can, not just O(n^2)
How would you sort an array if you had infinite RAM? Infinite memory?
Getting the min from a stack in O(1) time
Consider 4 components of a color where: unsigned char red = 0x10; unsigned char green = 0xFF; unsigned char blue = 0x0F; unsigned char alpha = 0x44; Generate a packed color ARGB which is a 32 bit integer such that A is in the MSB of ARGB followed by red, green, blue ----------------- | A | R | G | B | -----------------
Viewing 1791 - 1800 interview questions