How I would manage a bug that the team encountered for a feature.
Ios Developer Internship Interview Questions
5,596 ios developer internship interview questions shared by candidates
Technical Questions in iOS development
Static keywork in c language
FizzBuzz. Given a loop that counts upwards to X, print "Fizz" if the number is divisible by 3, "Buzz" if its divisible by 5, "FizzBuzz" if divisible by both, otherwise print the counter value. Then complexity is added when you are asked to introduce new words like "Guzz", "Muzz", etc for different values. Order matters (you'll never have "BuzzFizz")
Mostly we talked about cliche development question like; Multithreading, Atomoc and non-atomic difference and they asked me about SOLID principle.
Preguntas de programación orientada a objetos
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()
Add something cool to the app.
Do you test mobile applications
Viewing 641 - 650 interview questions