Swift question: let years = [15, 2, 67, 4, 5] let sum = years.filter({ $0 < 10 }).map({ $0 * 2 }).reduce(5, +) print(sum) Which of the following will be printed out to the console? A. [30, 4, 134, 88, 10] //yes, it's 88. I know you may have expected an 8, but I suspect a typo on their part (as in many other places) B. [5, 4, 8, 10] C. 14 D. 17 E. 19
Senior Ios Engineer Interview Questions
2,073 senior ios engineer interview questions shared by candidates
Enfocado al lenguaje de Swift, arquitecturas móviles, uso de mapas.
Data structure questions
strong vs weak?
Questions from the code I submitted in coding round.
Preformed a code test.
Previous project
The questions were very targeted towards mobile development. The initial interview wasn't a coding exercise; instead, they asked how you would approach building the given sample.
Find the second largest number from an array
In-memory caching, how will we prioritize image download process for visible cells.
Viewing 31 - 40 interview questions