The phone interview question was done via Coderpad and was titled "The Threebonacci Table" For the purposes of this problem, a Threebonacci sequence is a twist on the Fibonacci sequence where you would sum the previous three elements to get the next element. That is, if the Threebonacci function is defined as t, where n is the index of the element involved, t(n) = t(n-1) + t(n-2) + t(n-3). You can assume t(0) = 0, t(1) = 1, and t(2) = 1. With this information, please complete the tableview in the following UIViewController so that each UITableViewCell displays its Threebonacci value corresponding with its row index. An example is as follows: 0 1 1 2 4 and so on so forth.
Mobile Developer Intern Interview Questions
2,734 mobile developer intern interview questions shared by candidates
Related DSA: write program to check if given string is palindrome or not ? And Describe all complexity. Q 2. write program to find the longest common prefix in given array of string? Since my preferred tech was flutter so they ask me question related to that. Q. What is difference between Future and Stream in flutter.
Check if a string is symmetric or not.
The first seven problems (on the online test) were general problems: 1. Reading comprehension: A text is given, and then they ask question about the contents. 2. English language assessment: A slightly more complicated text is given, and the answers offered aren't exactly obvious, and are there to gauge the level of your understanding 3. Logic puzzles, like: if you move a unit south, then east, then north, you end up where you started from, where are you? 4. Statistical reasoning questions: you have some metrics for different time scales, you need to compare them and understand their relationships to not give a wrong answer
Basics regarding Mobile application!
whats your current salary?
How do you work in a team settings?
how would one reduce dynamic dispatch in Swift
How is your experience relevant?
Write a function that prints out a binary tree in order.
Viewing 451 - 460 interview questions