You have eight balls out of which one is of different weight. To find that in minimum number of iterations.
Android Developer Intern Interview Questions
10,446 android developer intern interview questions shared by candidates
refactor if statements into something "better"
Explica qué es un ANR.
only one thing ,you can do?
Build an API to handle login and registering a user, and show how you would test it.
Como você faria a estrutura de um aplicativo que fosse ser executado dentro de outro aplicativo?
They asked me about basics of android like activity and fragment lifecycle, MVVM archtecture and Jetpack libraries
What do you passionate about in Android.
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 ) } }
Viewing 341 - 350 interview questions