Basic coding questions, mobile app questions (explain the concepts and steps involved in building an app screen, etc.)
Mobile Software Interview Questions
5,882 mobile software interview questions shared by candidates
What is your thought process oh a device that is erroring or during a reimage?
Cada entrevista teve seu tema. Entrevistas técnicas: - Você tem experiencia com teste automatizado - Você ja ouviu falar de TDD - Já usou algum CI/CD Entrevistas "pessoais": - Você já recebeu ou deu feedback a alguem? Como foi? - Você já teve alguma experenciencia com liderança? - Você já passou por algum caso onde alguma pessoa sofreu disciminação? Que atitude e posição você tomou em torno disso?
Generic interview questions which lasted a little over an hour. Mostly scripted questions about behaviors and situational responses.
kind of a diversity inclusivity question.
Knowledge of vehicle mechanic and electric
Wanted to know about specific MDM products used. In this position, they are looking for someone with extensive MDM product use. Sounds like someone who worked for an MDM Software OEM would be a great fit.
They asked why I was interested in the position.
(Was shown the types of Apps currently in development) Was asked basically if I could "maintain / improve" the apps shown. Was a very leading question, which would be very hard to screw up answering. Did not require too much expansion on *how* I would accomplish this.
Here's an Objective C category extension. What's wrong with this code? @interface UIImage (RemoteImage) { NSURL * url; UIImage * image; } - (id) initWIthURL: (NSURL *) _url; @end @implementation UIImage (RemoteImage) - (id) initWithURL: (NSURL *)_url { self = [super init]; if( self != nil ) { url = _url; NSURLResponse * response = [NSURLResponse new]; NSURLRequest * request = [[NSURLRequest alloc] initWithURL: url]; NSData * data = [NSURLConnection sendSynchronousRequest: request returningResponse: response error: nil]; image = [UIImage imageWithData: data]; return image; } return self; } - (void) dealloc { [super dealloc]; [url release]; [image release]; } @end
Viewing 321 - 330 interview questions