Build a simple app that involves displaying data that changes in realtime
Ios Lead Interview Questions
3,241 ios lead interview questions shared by candidates
The first Jedi question was this: given an unsorted array of numbers, like [1, 3, 5, 4, 2], write a function that takes an integer and returns true if there's any pair of numbers in that array that can be summed up to the input integer.
Delegates, Protocol, blocks, multithreading, GCD, project specific, some behavioural questions etc
given numbers 1 4 2 0 2 0, move all zeros to beginning using minimum sorting technique
Implement the MyStack. (A lot of questions about multi-threading) @protocol Stack -(void)pushObject:(nonnull id)obj; -(nonnull id)popObjext; @property(nonatomic,assign)NSInteger count; @end @interface MyStack : NSObject <Stack> @end @implementation MyStack @end
Solve for n factorial using recursion.
How to pop two viewController at a time
Given an array where the otherwise sorted values are split into two ranges somewhere in the middle (e.g. [5,7,8,9,1,2,3]), come up with an algorithm that returns TRUE or FALSE if any given number X exists in that array.
When ARC takes place?
a telephone keypad has letters associated with each number (e.g. 2 = abc, 3 = def); given a passphrase of "fb1" (e.g. one that you might use to log into a bank account), come up with an algorithm that would assemble an array that contains all the different possible letter combinations that, when typed into a telephone dial pad, would be equivalent to the original passphrase.
Viewing 11 - 20 interview questions