Candidatei-me por meio de recrutador(a). O processo levou 3 semanas. Fui entrevistado pela Booking.com (Amsterdã) em jul. de 2015
Entrevista
Skype call where I was asked to some OOP questions about retain, atomic and none atomic objects then had a technical question to implement a stack protocol.
The interview was about nothing but OOP mainly and a little of iOS developing, no Software Engineering or any thing else was asked.
This is quit depressing since I was expecting something more .. of software engineering related that software development only.
Perguntas de entrevista [1]
Pergunta 1
Implement the m file
@protocol Stack <NSObject>
@property (nonatomic, readonly) NSInteger count;
- (void)pushObject:(nonnull id)object;
- (nullable id)popObject;
@end