What does C++ compiler do if i declare a class only as Class A{ };
Lead Mobile Engineer Interview Questions
3,576 lead mobile engineer interview questions shared by candidates
Given a string, return the first letter that does not have a duplicate. Talk about the time efficiency of your solution and re-write the solution to be space efficient.
Will it be difficult for you to do 80% travel with this job.
Name a time when you set a goal and failed at it?
(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
Name and explain one thing you like most about NodeJS and one thing you like least about NodeJS.
Identify and explain what a RESTful API is and what it means to you.
None
Explain how you would solve this highly-specific code problem I had last week with only half the information necessary to fully define the problem.
Viewing 31 - 40 interview questions