What do you passionate about in Android.
Android Lead Developer Interview Questions
2,232 android lead developer interview questions shared by candidates
How would I synchronize a local data store with a remote one
The following block of code assumes RxJava2 usage.Please, describe which scheduler will [map] execute on, [filter] execute on. fun theTest() { val io = Schedulers.io() Observable .just("long", "longer", "longest") .subscribeOn(Schedulers.io()) .map { println("map ${Thread.currentThread().name}") it.length } .observeOn(Schedulers.computation()) .filter { println("filter ${Thread.currentThread().name}") it > 6 } .blockingSubscribeBy { length -> println( "item length $length under " + Thread.currentThread().name ) } }
Preguntas relacionadas con Kotlin, POO y algo de SQL.
It was a convoluted sorting question. Basically your given an array with a some leading words followed by some numbers and some more words at the end. You first sort them based on the leading words, then numbers, afterwards, if both are equal you sort by the remaining words. There was some edge cases, but it was basically a sorting problem
Where are you based currently?
Basic and intermediate Android related questions
Describe about demo App you created.
A good formal interview project with kotlin
Name two sorting algorithms
Viewing 221 - 230 interview questions