O processo levou 1 dia. Fui entrevistado pela Motorola Mobility (Sunnyvale, CA) em fev. de 2009
Entrevista
I was contacted by the manager, and a phone interview was set up. There were no technical questions during the phone interview, more of what I have done before. He then gave me a test which consisted of constructing a BFS and DFS iteratively, some Java concurrency issues, and basic object oriented questions.
Perguntas de entrevista [5]
Pergunta 1
Write a function in Java that will take a sorted array of ints, possibly with duplicates, and compact the array removing all the duplicate numbers. That is, if the contains the numbers - 1, 3, 7, 7, 8, 9, 9, 9, 10, then when the function returns, the contents should be - 1, 3, 7, 8, 9, 10. Be sure your answer is as efficient as possible. Describe the efficiency of your algorithm using big O notation.
Write a program in Java that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”.
Given the root node of a tree, write two Java programs to visit all nodes of the tree, one in a depth-first fashion and the other in a breadth-first fashion, both without using recursion. Assume a node is represented by a class named Node, which has a method children() that returns a list of child nodes. Call node.visit() to visit a node.
Candidatei-me online. O processo levou 4 semanas. Fui entrevistado pela Motorola Mobility (Chicago, IL) em abr. de 2014
Entrevista
applied online , after a week got a call from HR asking me about language of coding,and discussed few things about my resume. after 2 week got call for my first interview: asking me about various OOPS concept ,then give a coding question to mirror the image . a few days back got call for second round ,in this he had given me a coding question to find out the cavity in xray image of teeth. interview went well but i think they dont want to hire.
Perguntas de entrevista [1]
Pergunta 1
coding question to find out the cavity in x-ray image of teeth.
Candidatei-me por meio de uma faculdade ou universidade. Fiz uma entrevista na empresa Motorola Mobility (Marlborough, MA).
Entrevista
This job was for a co-op at the undergraduate level. Interviewed for about 30 minutes. Was asked about current knowledge of C/C++, linked lists, arrays...
Implement a small program that involved manipulating an array of integers. I was basically tested on my proficiency in C programming
Perguntas de entrevista [1]
Pergunta 1
Did not really have a difficult question. Just show how proficient you are in C