Ho presentato la mia candidatura tramite un selezionatore. La procedura ha richiesto una settimana. Ho sostenuto un colloquio presso Apple (Cupertino, CA) nel mese di mar 2012
Colloquio
Initial contact was made through a phone screen interview with the Apple recruiter. After deterimining that the opportunity was a good fit, a 1:1 interview was arranged with 2 of the current managers in the organization. The interviews were handled professionally, and the two managers were completely in sync with the needs of the business, and what kind of individual would be a good fit. Both 1:1's lasted 45 minutes.
Domande di colloquio [1]
Domanda 1
What equipment safety standards am I familiar with, and describe the differnces between the standards.
Ho presentato la mia candidatura tramite un'agenzia di reclutamento personale. La procedura ha richiesto 2 settimane. Ho sostenuto un colloquio presso Apple (Cambridge, East of England, England) nel mese di nov 2025
Colloquio
The process included 3-4 interviews. The first one is a general interview with a couple of technical questions. The others are fully technical. You need to pass the first one to get to the others.
Domande di colloquio [1]
Domanda 1
You have a system with multiple robotic arms. How do you coordinate between them?
Ho presentato la mia candidatura tramite un'agenzia di reclutamento personale. Ho sostenuto un colloquio presso Apple
Colloquio
I was contacted by Adecco and got technical interview with apple
The questions were core Java and 2 coding questions 1) two sum 2) reverse a string and oops concepts
Domande di colloquio [1]
Domanda 1
core Java and 2 coding questions 1) two sum 2) reverse a string and oops concepts
Ho presentato la mia candidatura tramite un'agenzia di reclutamento personale. Ho sostenuto un colloquio presso Apple
Colloquio
Simple and Helpful. OOPS Concepts. Overload and Override. HashMap. Contains. Best Feature of Java 8.
What are wrapper classes in Java? What is the difference between equals() and == in Java? What is singleton class in Java and how can we make a class singleton?
Domande di colloquio [1]
Domanda 1
Count number of repeated characters in a String
HashMap<Character, Integer> my_map = new HashMap<Character, Integer>();
char[] str_array = charstring.toCharArray();
for (char abc : str_array){
if (my_map.containsKey(abc))
{
my_map.put(abc, my_map.get(abc) + 1);
}
else{
my_map.put(abc, 1);
}
}//end of char for
for (Map.Entry entry : my_map.entrySet()) {
System.out.println(entry.getKey() + " " + entry.getValue()); // print (char "space" Integer) <--comes from the map!
}
String charstring="rrrttsr