Standard Software Development interview questions. Check careercup.com or leetcode.com for lots of examples. Popular interview question: Implement the floodfill (aka paint bucket) function of the Windows Paint program.
Anonymous
+ Propose a 2D matrix of pixels to represent the screen. + Distinguish between a four way (left, right, up, down) fill, and an eight way fill (previous 4 ways + diagonals) + Clarify the use of colors, B/W or use an enum for the supported colors, etc. Then do it recursively or iteratively, by painting a pixel or ignoring it. If painting a pixel, repeat for its adjacent pixels, otherwise, return.
Check out your Company Bowl for anonymous work chats.