Mobile Engineer Interview Questions

Mobile Engineer Interview Questions

A mobile engineer is a highly qualified and demanding role. In an interview, you will need to demonstrate that you have a good understanding of the software and programming languages being used by the company, strong project management skills, and the ability to work as part of a dynamic and high-pressure team.

Top Mobile Engineer Interview Questions & How to Answer

Question 1

Question #1: What programming languages are you proficient in?

How to answer
How to answer: This is your opportunity to demonstrate your knowledge. Outline which languages you know and give a few details about your experience. For example, say how long you've been using the language, how and why you learned it, and an example of a project which you worked on. Highlight any self-study, particularly for languages that you are less proficient in, as this shows that you are willing to continue learning.
Question 2

Question #2: What is your problem-solving process?

How to answer
How to answer: The interviewer wants to know your whole process for problem-solving from beginning to end. Explain how you identify and categorize problems or bugs, what steps you take to find a solution, and how you deal with stumbling blocks. Try to use specific examples from your own experience where possible.
Question 3

Question #3: What project management tools have you used?

How to answer
How to answer: Project management is a crucial part of ensuring a team works together effectively. List any tools you have used and explain what you like about them and how they improved your workflow. It's a good idea to research and test out a variety of project management tools in your spare time so that you can easily talk about each one and adapt to using it.

5,876 mobile engineer interview questions shared by candidates

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

Senior Mobile Developer

Interviewed at ScottishPower

3.8
Jul 29, 2022

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.

(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

Viewing 321 - 330 interview questions

Glassdoor has 5,876 interview questions and reports from Mobile engineer interviews. Prepare for your interview. Get hired. Love your job.