How would I synchronize a local data store with a remote one
Ingeniero De Software Android Interview Questions
8,345 ingeniero de software android interview questions shared by candidates
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?
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 271 - 280 interview questions