They asked me to reverse a string.
Ios Lead Interview Questions
3,197 ios lead interview questions shared by candidates
Mostly we talked about cliche development question like; Multithreading, Atomoc and non-atomic difference and they asked me about SOLID principle.
How to move a file on a computer
do you like electronics
what do you mean by async await
Preguntas de programación orientada a objetos
Why did you get into engineering?
Talk about the lifecycle of a view controller
What is iphone reference library?
For this swift code below, what's the order of things being printed out in the console? class Master { lazy var detail = Detail(master: self) init() { Swift.print("Master init") } deinit { Swift.print("Master deinit") } } class Detail { var master : Master init(master : Master) { Swift.print("Detail init") self.master = master } deinit { Swift.print("Detail deinit") } } func createMaster() { var master: Master = Master() var detail = master.detail } createMaster()
Viewing 521 - 530 interview questions