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 ) } }
Android Engineer Interview Questions
9,765 android engineer interview questions shared by candidates
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
Are you familiar with the MVVM architecture?
The coding test was to build an Android-based RESTful API Client that displays a list of information based on an open API endpoint.
Viewing 321 - 330 interview questions