Android Interview
November 15, 2023 ยท View on GitHub

Android Libraries Questions
-
Do you design new libraries for yourself or use others?
-
Which Android Libraries are you familiar with?
- Android Jetpack
- Retrofit2
- RxJava / RxAndroid
- Dagger2
- Timber
- Koin
- Picasso / Glide
- Gson
-
What is an ORM?
- Object-relational mapping is a technique (a.k.a. design pattern) of accessing a relational database from an object-oriented language
-
Which ORMs are you familiar with?
- Room
- DBFlow
- OrmLite
- Realm
-
What is RxJava / RxAndroid?
- A library for reactive programming
- Works like wireframe between different layers and creates pipelines of data
-
What is the difference between
FlatMap,SwitchMap,ConcatMapin RxJava? -
Have you used Mockito?