Mobile Developer Intern Interview Questions

2,734 mobile developer intern interview questions shared by candidates

(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.
avatar

Mobile Developer

Interviewed at Evolusent

4.4
Feb 9, 2012

(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
avatar

Mobile Software Engineer

Interviewed at GREE International Entertainment

2.8
Oct 31, 2012

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

(Same job) Why did you end up there out of college? That was a good year for the job market, with your grades there must have been other opportunities, you seem to have more potential than what you have done
avatar

Mobile Developer (ION Trading)

Interviewed at Financial Software Systems

3.7
Jul 29, 2014

(Same job) Why did you end up there out of college? That was a good year for the job market, with your grades there must have been other opportunities, you seem to have more potential than what you have done

Given this code: int sum( int a, int b) { int i, s; for( i = a; i < b; i++) s+=a; } We're trying to get the sum of a range of numbers (1-3 = 6, 3-6 = 18, etc). What are the bugs in this code? What's the complexity of this code?
avatar

Mobile Software Engineer

Interviewed at IonGrid

5
Dec 5, 2012

Given this code: int sum( int a, int b) { int i, s; for( i = a; i < b; i++) s+=a; } We're trying to get the sum of a range of numbers (1-3 = 6, 3-6 = 18, etc). What are the bugs in this code? What's the complexity of this code?

Viewing 141 - 150 interview questions

Glassdoor has 2,734 interview questions and reports from Mobile developer intern interviews. Prepare for your interview. Get hired. Love your job.