During the offline tech test I was asked to produce a list view(quite common for a mobile role position) of tracks along with details view that would present things in a browser. MVVM pattern was the architectural approach of preference. Also I shouldn't make use of any third party code like for networking or image downloading. Code should be hosted in an online version control, like GitHub.
Mobile Software Engineer Interview Questions
5,876 mobile software engineer interview questions shared by candidates
Come gestisci il dover ricevere degli ordini? E se non li reputi corretti o non capisci la motivazione che vi è alla base?
It was all about mobile testing
They asked why I was interested in the position.
Write test cases for Traffic signal
What type of work do you expect to get done in the next 6 months?
1. How gradle works in android?
Knowledge of vehicle mechanic and electric
(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