├── Android ├── -nodpi, -anydpi qualifiers for resources.md ├── Activity Lifecycle.md ├── Build Type, Product Flavor, Build Variant.md ├── Describe Fragment lifecycle.md ├── Describe android modularization in general.md ├── Describe jetpack compose phases.md ├── Difference between Room and SQLite.md ├── Difference between raw and assets folders.md ├── Different between @id and @+id.md ├── How does RecyclerView differ from ListView.md ├── How to communicate with fragments.md ├── How to support different screen size in android.md ├── Main components of Android application.md ├── Service vs IntentService.md ├── View lifecycle.md ├── What are Sticky Intent.md ├── What are the permission protection levels.md ├── What do you know about Activity Result APIs.md ├── What do you know about App Bundles.md ├── What do you know about App Shortcuts.md ├── What do you know about App Startup library.md ├── What do you know about ArrayMap.md ├── What do you know about Auto Backup.md ├── What do you know about Chrome custom tabs.md ├── What do you know about CompositionLocal.md ├── What do you know about Converters in Room.md ├── What do you know about DiffUtil.md ├── What do you know about FileProvider.md ├── What do you know about Foreground Services.md ├── What do you know about Handler, MessageQueue, Looper.md ├── What do you know about Intent Filter.md ├── What do you know about Intents.md ├── What do you know about Lint.md ├── What do you know about Parcelable.md ├── What do you know about PendingIntent.md ├── What do you know about Play Feature Delivery.md ├── What do you know about RecyclerView ItemDecoration.md ├── What do you know about SparseArray.md ├── What do you know about Splash screen and SplashScreen library.md ├── What do you know about Version catalog.md ├── What do you know about View Binding.md ├── What do you know about ViewCompositionStrategy.md ├── What do you know about accessibility.md ├── What do you know about app startup time.md ├── What do you know about downloadable fonts.md ├── What do you know about lifecycle from architecture component.md ├── What do you know about notification.md ├── What do you know about paging library.md ├── What do you know about side effects in jetpack compose.md ├── What do you know about slices.md ├── What do you know about taskAffinity.md ├── What do you know about tasks and the back stack.md ├── What is ANR.md ├── What is AndroidManifest.md ├── What is Context.md ├── What is Fragment.md ├── What is Jetpack Compose.md ├── What is Overdraw.md ├── What is Spannable.md ├── What is StrictMode.md ├── What is SurfaceView.md ├── What is background task and how it should be performed.md ├── What is gradle.md ├── What is installLocation tag in AndroidManifest.md ├── What is savedInstanceState bundle.md ├── What is the difference between Activity and Fragment.md ├── What is the difference between Dialog & DialogFragment.md ├── What is the difference between Serializable and Parcelable.md ├── What is the difference between view binding and data binding.md ├── What launch modes do you know.md ├── What modularization patterns do you know.md ├── What security best practices you know.md ├── What tools for multithreading do you know.md ├── What types of modules do you know.md ├── What ways do you know to reduce the size of an application.md ├── What you know about DataStore.md ├── What's Activity.md ├── What's BroadcastReceiver.md ├── What's ContentProvider.md ├── What's Jetpack.md ├── What's LiveData.md ├── What's Navigation component.md ├── What's Play App Signing.md ├── What's Proguard.md ├── What's RecyclerView.md ├── What's Room.md ├── What's Service.md ├── What's View.md ├── What's ViewGroup How are they different from Views.md ├── What's ViewModel.md ├── What's ViewStub.md ├── What's Widget.md ├── What's WorkManager.md ├── What's dark theme.md ├── What's data binding.md └── res │ ├── activity_lifecycle.png │ ├── anr_example_framed.png │ ├── app_modules.png │ ├── app_signing.png │ ├── appearance_affecting_spans.png │ ├── build_type.png │ ├── cold_start.png │ ├── compose_1.png │ ├── compose_phases.svg │ ├── compose_phases_state_read_draw.svg │ ├── content_provider.jpg │ ├── context.png │ ├── context_table.png │ ├── data_modules.png │ ├── debug_broadcast_receiver_timeout.png │ ├── debug_content_provider_anr.png │ ├── debug_execute_service_anr.png │ ├── debug_input_dispatch_anr.png │ ├── diagram_backstack.png │ ├── diagram_multitasking.png │ ├── downloadable_fonts_process.png │ ├── event_tasks_flowchart.svg │ ├── feature_modules.png │ ├── fragment-a-to-b.png │ ├── fragment_add_replace.png │ ├── fragment_lifecycle.png │ ├── fragment_stop_save_order.png │ ├── fragments.png │ ├── handler_looper_message.jpeg │ ├── hot_start.png │ ├── layout-editor_2x.png │ ├── lifecycle_states.svg │ ├── lint_tool.png │ ├── metric_affecting_spans.png │ ├── modularization_dependency_graph.png │ ├── module_mediator.png │ ├── modules_di_concept.png │ ├── modules_shared_data.png │ ├── ninepatch_raw.png │ ├── nodpi_anydpi_source.png │ ├── notification.png │ ├── paging_library_architecture.webp │ ├── paragraph_affecting_spans.png │ ├── pass-parent-child.png │ ├── pinned_shortcuts.png │ ├── product_flavor.png │ ├── room.png │ ├── service_lifecycle.png │ ├── singleInstance_scenario_1.png │ ├── singleTask_scenario_1.png │ ├── singleTask_scenario_1_2.png │ ├── singleTask_scenario_2.png │ ├── singleTop_scenario_1.png │ ├── singleTop_scenario_2.png │ ├── sizes-phone-tablet_2x.png │ ├── slices_image_1.png │ ├── slices_image_2.png │ ├── slices_image_3.png │ ├── slices_image_4.png │ ├── slices_image_5.png │ ├── slices_image_6.png │ ├── slices_image_7.png │ ├── spannable_table.png │ ├── test_modules.png │ ├── user_task_flowchart.svg │ ├── view_hierarchy.png │ ├── view_lifecycle.png │ ├── viewbinding_vs_databinding.png │ ├── viewmodel_lifecycle.png │ ├── wear_dep_graph.png │ └── work_manager_criteria.png ├── General ├── Composition vs Inheritance.md ├── Concurrency vs Parallelism.md ├── Describe Scrum and Kanban.md ├── Difference between git rebase and git merge.md ├── OOP principles.md ├── SOAP vs REST.md ├── SOLID principles.md ├── What do you know about CI.md ├── What do you know about DI.md ├── What do you know about GraphQL.md ├── What do you know about OSI model.md ├── What do you know about Protocol Buffers.md ├── What do you know about SOAP.md ├── What do you know about Symmetric Key Encryption.md ├── What do you know about TCP.md ├── What do you know about UDP.md ├── What do you know about URI.md ├── What do you know about URL.md ├── What do you know about YAGNI, KISS, DRY.md ├── What do you know about asymmetric key encryption.md ├── What do you know about certificate pinning.md ├── What do you know about certificate transparency.md ├── What do you know about ssl certificates.md ├── What do you know about waterfall methodology.md ├── What is Agile.md ├── What is Extreme Programming (XP).md ├── What is Feature Driven Development (FDD).md ├── What is Kanban.md ├── What is Man-in-the-middle attack.md ├── What is REST.md ├── What is Scrum.md ├── What is cohesion.md ├── What is coupling.md ├── What is deadlock.md ├── What is encryption. What types of encryption keys do you know.md ├── What is livelock.md ├── What is the difference between Aggregation and Composition.md ├── What is the difference between DI and Service Locator.md ├── What is the difference between GET and POST request.md ├── What is the difference between HTTP and HTTPS.md ├── What is the difference between PUT and POST request.md ├── What is the difference between TCP and UDP.md ├── What is the difference between abstraction and encapsulation.md ├── What is the difference between git pull and git fetch.md ├── What is the difference between symmetric and asymmetric encryption.md └── res │ ├── aggregation.jpg │ ├── agile.png │ ├── asymmetric-encryption.png │ ├── asymmetric_base.png │ ├── ci_basics.svg │ ├── cohesion.png │ ├── composition.jpg │ ├── concurrency.png │ ├── coupling.png │ ├── ct_components.jpeg │ ├── ct_works.jpeg │ ├── encryption_base.png │ ├── fdd.png │ ├── graphql_general.png │ ├── man_in_the_middle_attack.png │ ├── osi_model.png │ ├── parallelism.png │ ├── proto_buffers_types.png │ ├── soap_message.png │ ├── soap_protocol.png │ ├── ssl_certificate_work.png │ ├── symmetric_base.png │ ├── symmetric_encryption.png │ ├── tcp_header.jpg │ ├── udp_datagram.png │ ├── uri_syntax.png │ ├── waterfall_model.png │ ├── xp_lifycycle.webp │ └── yagni_image.webp ├── Java ├── ArrayList vs LinkedList.md ├── Can a constructor be inherited.md ├── Can a static method be overridden.md ├── Comparable interface in java.md ├── Describe Deque interface from java collection.md ├── Describe List interface.md ├── Describe Queue interface from java collection.md ├── Describe map interface from java collection.md ├── Describe set interface from java collection.md ├── Difference between Semaphore and Monitor.md ├── Difference between int and Integer.md ├── Difference between static and regular nested classes.md ├── Different between Array and ArrayList.md ├── Do objects get passed by reference or value.md ├── Exception. Checked and Unchecked..md ├── Generics.md ├── HashSet vs TreeSet.md ├── Hashtable vs ConcurrentHashMap.md ├── How HashMap works.md ├── Memory model.md ├── Method signature.md ├── References types.md ├── What are anonymous classes.md ├── What are lambda expressions.md ├── What are the basic interfaces of Java Collections Framework.md ├── What are the methods of Object class.md ├── What do you know about ArrayList.md ├── What do you know about Comparator interface.md ├── What do you know about ConcurrentHashMap.md ├── What do you know about EnumMap.md ├── What do you know about EnumSet.md ├── What do you know about HashSet.md ├── What do you know about Hashtable.md ├── What do you know about Iterator interface.md ├── What do you know about LinkedHashMap.md ├── What do you know about LinkedHashSet.md ├── What do you know about LinkedList.md ├── What do you know about Serializable interface.md ├── What do you know about Stack.md ├── What do you know about Stream interface.md ├── What do you know about TreeMap.md ├── What do you know about TreeSet.md ├── What do you know about Vector.md ├── What do you know about access modifiers.md ├── What do you know about default method in interface.md ├── What do you know about double check pattern singleton.md ├── What do you know about java record.md ├── What do you know about try-catch-finally.md ├── What do you know about wildcard.md ├── What does the keyword synchronized mean.md ├── What is Java's Garbage Collection.md ├── What is String Pool.md ├── What is casting.md ├── What is enum.md ├── What is immutable object.md ├── What is memory leak.md ├── What is object monitor.md ├── What is the difference between JDK, JRE and JVM.md ├── What is the difference between String, StringBuilder and StringBuffer.md ├── What is the difference between a Stream and an Iterator.md ├── What is the difference between final, finally and finalize.md ├── What is the difference between overriding and overloading.md ├── What is transient keyword.md ├── What is volatile keyword.md ├── What's Clonaeble interface.md ├── What's Comparable and Comparator interface.md ├── What's Executor interface.md ├── What's Semaphore.md ├── What's interface.md └── res │ ├── access_modifier.png │ ├── collection.jpeg │ ├── deque_interface_java.jpeg │ ├── exception_hierarchy.jpg │ ├── garbage_collection_generations.png │ ├── garbage_collection_step_1.png │ ├── garbage_collection_step_2.png │ ├── garbage_collection_step_3.png │ ├── iterators.png │ ├── java_list_class_diagram.png │ ├── java_map.png │ ├── java_memory.jpg │ ├── java_memory_leak.png │ ├── java_set_implementation.png │ ├── jdk.png │ ├── jre.png │ ├── linkedlist-node.png │ ├── linkedlist_implemenation.png │ ├── metaspace.png │ ├── queue_interface_java.png │ ├── semaphore.jpeg │ ├── serialize_deserialize_java.png │ ├── stack_and_heap.png │ ├── stack_vs_heap.png │ ├── string_pool.png │ └── volatile.png ├── Kotlin ├── Crossinline keyword.md ├── Default method in kotlin interface.md ├── Describe constructors invocation order.md ├── Describe nullability and null safety.md ├── Difference between fold and reduce in Kotlin.md ├── Enum.md ├── Generics.md ├── Inline keyword.md ├── Kotlin collections.md ├── Scope functions.md ├── Visibility modifiers.md ├── What are coroutines.md ├── What do you know about Any, Nothing, Unit types.md ├── What do you know about Channels.md ├── What do you know about Coroutine Job.md ├── What do you know about Flow.md ├── What do you know about JvmOverloads annotation.md ├── What do you know about JvmStatic and JvmField annotations.md ├── What do you know about StateFlow and SharedFlow.md ├── What do you know about companion object.md ├── What do you know about data classes.md ├── What do you know about data objects.md ├── What do you know about delegated properties.md ├── What do you know about extensions?.md ├── What do you know about functional interfaces.md ├── What do you know about lateinit.md ├── What do you know about object keyword.md ├── What do you know about operator overloading.md ├── What do you know about property references.md ├── What do you know about reified keyword.md ├── What do you know about sealed classes and interfaces.md ├── What do you know about type aliases.md ├── What is Coroutine Scope and how is that different from Coroutine Context?.md ├── What is destructuring declarations.md ├── What is the difference between * and Any in generics.md ├── What is the difference between abstract class and interface.md ├── What is the difference between functional interfaces and type aliases.md ├── What is the difference between lazy and lateinit.md ├── What is the difference between nested class and inner class.md ├── What is the difference between suspending vs. blocking.md ├── What's Ranges.md ├── What's Sequence.md ├── What's a const.md ├── What's difference between == and ===.md ├── What's difference between launch and async.md ├── What's infix function.md ├── What's init block.md ├── What's inline class.md ├── code │ └── Questions.md ├── map vs flatMap in collections.md ├── res │ ├── collections-diagram.png │ ├── coroutine_context.png │ ├── coroutine_scope.png │ ├── crossinline.png │ ├── flow_entities.png │ ├── nullability_compile_time_error.png │ ├── scope_function.png │ └── visibility_modifiers.png └── val mutableList vs var immutableList. When to use which.md ├── LICENSE ├── Libraries ├── Main annotations in Dagger 2.md ├── Popular libraries for image loading on Android.md ├── What JSON serialization & deserialization libraries do you know.md ├── What do you know about Kodein.md ├── What do you know about Koin.md ├── What do you know about OkHttp interceptors.md ├── What do you know about OkHttp.md ├── What do you know about Realm.md ├── What do you know about Retrofit.md ├── What do you know about hilt.md ├── What the difference between @Bind and @Provides in Dagger 2.md ├── What's Dagger 2.md ├── Which libraries for dependency injection you know.md └── res │ ├── hilt_hierarchy.png │ └── interceptors.png ├── Patterns ├── Abstract factory pattern.md ├── Adapter pattern.md ├── Bridge pattern.md ├── Builder pattern.md ├── Chain of Responsibility pattern.md ├── Command pattern.md ├── Composite pattern.md ├── Decorator pattern.md ├── Facade pattern.md ├── Factory method pattern.md ├── Flyweight pattern.md ├── Interpreter pattern.md ├── Iterator pattern.md ├── MVI pattern.md ├── MVP pattern.md ├── MVVM pattern.md ├── Mediator pattern.md ├── Memento pattern.md ├── Observer pattern.md ├── Prototype pattern.md ├── Proxy pattern.md ├── Service locator pattern.md ├── Singleton pattern.md ├── State pattern.md ├── Strategy pattern.md ├── Template method pattern.md ├── Types of Design Patterns.md ├── Visitor pattern.md └── res │ ├── facade.jpg │ ├── mvi.png │ ├── mvp_android.png │ ├── mvvm_android.png │ └── state_pattern.jpeg ├── README.md ├── Rx ├── Give example of combining operators.md ├── Give example of conditional operators.md ├── Give example of creating operators.md ├── Give example of error handling operators.md ├── Give example of filtering operators.md ├── Give example of mathematical and aggregate operators.md ├── Give example of transforming operators.md ├── Give example of utility operators.md ├── Observable types.md ├── RepeatWhen vs RetryWhen.md ├── Schedulers types.md ├── Subjects types.md ├── What do you know about observeOn operator.md ├── What do you know about subscribeOn operator.md ├── What is the difference between cold and hot observables.md ├── What's backpressure.md ├── What's the difference between Concat Vs Merge.md ├── What's the difference between map and flatMap.md ├── What's the difference between observeOn and subscribeOn.md ├── What’s the difference between flatMap(), concatMap() and switchMap().md ├── code │ └── subscribeOn.md └── res │ ├── async_subject_error.png │ ├── async_subject_success.png │ ├── behavior_subject_error.png │ ├── behavior_subject_success.png │ ├── combining_combineLatest.png │ ├── combining_join.png │ ├── combining_merge.png │ ├── combining_startWith.png │ ├── combining_switch.png │ ├── combining_zip.png │ ├── concat.png │ ├── concatMap.png │ ├── conditional_all.png │ ├── conditional_amb.png │ ├── conditional_contains.png │ ├── conditional_defaultIfEmpty.png │ ├── conditional_sequenceEqual.png │ ├── conditional_skipUntil.png │ ├── conditional_skipWhile.png │ ├── conditional_takeUntil.png │ ├── conditional_takeWhile.png │ ├── creating_create.png │ ├── creating_defer.png │ ├── creating_empty.png │ ├── creating_from.png │ ├── creating_interval.png │ ├── creating_just.png │ ├── creating_never.png │ ├── creating_range.png │ ├── creating_repeat.png │ ├── creating_start.png │ ├── creating_throw.png │ ├── creating_timer.png │ ├── error_handling_catch.png │ ├── error_handling_onErrorResumeNext.png │ ├── error_handling_onErrorReturn.png │ ├── error_handling_onExceptionResumeNext.png │ ├── error_handling_retry.png │ ├── error_handling_retryMain.png │ ├── error_handling_retryWhen.png │ ├── filtering_debounce.png │ ├── filtering_distinct.png │ ├── filtering_elementAt.png │ ├── filtering_filter.png │ ├── filtering_first.png │ ├── filtering_ignoreElements.png │ ├── filtering_last.png │ ├── filtering_sample.png │ ├── filtering_skip.png │ ├── filtering_skipLast.png │ ├── filtering_take.png │ ├── filtering_takeLast.png │ ├── flatMap.png │ ├── math_concat.png │ ├── math_count.png │ ├── math_reduce.png │ ├── merge.png │ ├── observeOn.png │ ├── observeOn_flow.png │ ├── publish_subject_error.png │ ├── publish_subject_success.png │ ├── replay_subject_success.png │ ├── schedulers.png │ ├── serialize.png │ ├── switchMap.png │ ├── transforming_buffer.png │ ├── transforming_flatMap.png │ ├── transforming_groupBy.png │ ├── transforming_map.png │ ├── transforming_scan.png │ ├── transforming_window.png │ ├── utility_delay.png │ ├── utility_dematerialize.png │ ├── utility_do.png │ ├── utility_materialize.png │ ├── utility_schedulers.png │ ├── utility_subscribeon.png │ ├── utility_timeInterval.png │ ├── utility_timeout.png │ └── utility_timestamp.png ├── Test Assignments └── Google image search.md └── Testing ├── Describe Test Driven Development.md ├── Difference between JUnit 4 and JUnit 5.md ├── Difference between mock, fake and stub.md ├── Test pyramid.md ├── Unit testing vs Functional testing.md ├── What do you know about BDD.md ├── What do you know about Mockito library.md ├── What do you know about espresso.md ├── What is A_B testing.md ├── What is JUnit.md ├── What is functional testing.md ├── What is robolectric.md ├── What is unit test.md └── res ├── ab_testing.png ├── tdd.png └── test_pyramid.png /Android/-nodpi, -anydpi qualifiers for resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/-nodpi, -anydpi qualifiers for resources.md -------------------------------------------------------------------------------- /Android/Activity Lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/Activity Lifecycle.md -------------------------------------------------------------------------------- /Android/Build Type, Product Flavor, Build Variant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/Build Type, Product Flavor, Build Variant.md -------------------------------------------------------------------------------- /Android/Describe Fragment lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/Describe Fragment lifecycle.md -------------------------------------------------------------------------------- /Android/Describe android modularization in general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/Describe android modularization in general.md -------------------------------------------------------------------------------- /Android/Describe jetpack compose phases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/Describe jetpack compose phases.md -------------------------------------------------------------------------------- /Android/Difference between Room and SQLite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/Difference between Room and SQLite.md -------------------------------------------------------------------------------- /Android/Difference between raw and assets folders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/Difference between raw and assets folders.md -------------------------------------------------------------------------------- /Android/Different between @id and @+id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/Different between @id and @+id.md -------------------------------------------------------------------------------- /Android/How does RecyclerView differ from ListView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/How does RecyclerView differ from ListView.md -------------------------------------------------------------------------------- /Android/How to communicate with fragments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/How to communicate with fragments.md -------------------------------------------------------------------------------- /Android/How to support different screen size in android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/How to support different screen size in android.md -------------------------------------------------------------------------------- /Android/Main components of Android application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/Main components of Android application.md -------------------------------------------------------------------------------- /Android/Service vs IntentService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/Service vs IntentService.md -------------------------------------------------------------------------------- /Android/View lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/View lifecycle.md -------------------------------------------------------------------------------- /Android/What are Sticky Intent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What are Sticky Intent.md -------------------------------------------------------------------------------- /Android/What are the permission protection levels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What are the permission protection levels.md -------------------------------------------------------------------------------- /Android/What do you know about Activity Result APIs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Activity Result APIs.md -------------------------------------------------------------------------------- /Android/What do you know about App Bundles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about App Bundles.md -------------------------------------------------------------------------------- /Android/What do you know about App Shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about App Shortcuts.md -------------------------------------------------------------------------------- /Android/What do you know about App Startup library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about App Startup library.md -------------------------------------------------------------------------------- /Android/What do you know about ArrayMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about ArrayMap.md -------------------------------------------------------------------------------- /Android/What do you know about Auto Backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Auto Backup.md -------------------------------------------------------------------------------- /Android/What do you know about Chrome custom tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Chrome custom tabs.md -------------------------------------------------------------------------------- /Android/What do you know about CompositionLocal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about CompositionLocal.md -------------------------------------------------------------------------------- /Android/What do you know about Converters in Room.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Converters in Room.md -------------------------------------------------------------------------------- /Android/What do you know about DiffUtil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about DiffUtil.md -------------------------------------------------------------------------------- /Android/What do you know about FileProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about FileProvider.md -------------------------------------------------------------------------------- /Android/What do you know about Foreground Services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Foreground Services.md -------------------------------------------------------------------------------- /Android/What do you know about Handler, MessageQueue, Looper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Handler, MessageQueue, Looper.md -------------------------------------------------------------------------------- /Android/What do you know about Intent Filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Intent Filter.md -------------------------------------------------------------------------------- /Android/What do you know about Intents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Intents.md -------------------------------------------------------------------------------- /Android/What do you know about Lint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Lint.md -------------------------------------------------------------------------------- /Android/What do you know about Parcelable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Parcelable.md -------------------------------------------------------------------------------- /Android/What do you know about PendingIntent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about PendingIntent.md -------------------------------------------------------------------------------- /Android/What do you know about Play Feature Delivery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Play Feature Delivery.md -------------------------------------------------------------------------------- /Android/What do you know about RecyclerView ItemDecoration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about RecyclerView ItemDecoration.md -------------------------------------------------------------------------------- /Android/What do you know about SparseArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about SparseArray.md -------------------------------------------------------------------------------- /Android/What do you know about Splash screen and SplashScreen library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Splash screen and SplashScreen library.md -------------------------------------------------------------------------------- /Android/What do you know about Version catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about Version catalog.md -------------------------------------------------------------------------------- /Android/What do you know about View Binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about View Binding.md -------------------------------------------------------------------------------- /Android/What do you know about ViewCompositionStrategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about ViewCompositionStrategy.md -------------------------------------------------------------------------------- /Android/What do you know about accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about accessibility.md -------------------------------------------------------------------------------- /Android/What do you know about app startup time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about app startup time.md -------------------------------------------------------------------------------- /Android/What do you know about downloadable fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about downloadable fonts.md -------------------------------------------------------------------------------- /Android/What do you know about lifecycle from architecture component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about lifecycle from architecture component.md -------------------------------------------------------------------------------- /Android/What do you know about notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about notification.md -------------------------------------------------------------------------------- /Android/What do you know about paging library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about paging library.md -------------------------------------------------------------------------------- /Android/What do you know about side effects in jetpack compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about side effects in jetpack compose.md -------------------------------------------------------------------------------- /Android/What do you know about slices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about slices.md -------------------------------------------------------------------------------- /Android/What do you know about taskAffinity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about taskAffinity.md -------------------------------------------------------------------------------- /Android/What do you know about tasks and the back stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What do you know about tasks and the back stack.md -------------------------------------------------------------------------------- /Android/What is ANR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is ANR.md -------------------------------------------------------------------------------- /Android/What is AndroidManifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is AndroidManifest.md -------------------------------------------------------------------------------- /Android/What is Context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is Context.md -------------------------------------------------------------------------------- /Android/What is Fragment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is Fragment.md -------------------------------------------------------------------------------- /Android/What is Jetpack Compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is Jetpack Compose.md -------------------------------------------------------------------------------- /Android/What is Overdraw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is Overdraw.md -------------------------------------------------------------------------------- /Android/What is Spannable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is Spannable.md -------------------------------------------------------------------------------- /Android/What is StrictMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is StrictMode.md -------------------------------------------------------------------------------- /Android/What is SurfaceView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is SurfaceView.md -------------------------------------------------------------------------------- /Android/What is background task and how it should be performed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is background task and how it should be performed.md -------------------------------------------------------------------------------- /Android/What is gradle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is gradle.md -------------------------------------------------------------------------------- /Android/What is installLocation tag in AndroidManifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is installLocation tag in AndroidManifest.md -------------------------------------------------------------------------------- /Android/What is savedInstanceState bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is savedInstanceState bundle.md -------------------------------------------------------------------------------- /Android/What is the difference between Activity and Fragment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is the difference between Activity and Fragment.md -------------------------------------------------------------------------------- /Android/What is the difference between Dialog & DialogFragment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is the difference between Dialog & DialogFragment.md -------------------------------------------------------------------------------- /Android/What is the difference between Serializable and Parcelable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is the difference between Serializable and Parcelable.md -------------------------------------------------------------------------------- /Android/What is the difference between view binding and data binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What is the difference between view binding and data binding.md -------------------------------------------------------------------------------- /Android/What launch modes do you know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What launch modes do you know.md -------------------------------------------------------------------------------- /Android/What modularization patterns do you know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What modularization patterns do you know.md -------------------------------------------------------------------------------- /Android/What security best practices you know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What security best practices you know.md -------------------------------------------------------------------------------- /Android/What tools for multithreading do you know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What tools for multithreading do you know.md -------------------------------------------------------------------------------- /Android/What types of modules do you know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What types of modules do you know.md -------------------------------------------------------------------------------- /Android/What ways do you know to reduce the size of an application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What ways do you know to reduce the size of an application.md -------------------------------------------------------------------------------- /Android/What you know about DataStore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What you know about DataStore.md -------------------------------------------------------------------------------- /Android/What's Activity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's Activity.md -------------------------------------------------------------------------------- /Android/What's BroadcastReceiver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's BroadcastReceiver.md -------------------------------------------------------------------------------- /Android/What's ContentProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's ContentProvider.md -------------------------------------------------------------------------------- /Android/What's Jetpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's Jetpack.md -------------------------------------------------------------------------------- /Android/What's LiveData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's LiveData.md -------------------------------------------------------------------------------- /Android/What's Navigation component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's Navigation component.md -------------------------------------------------------------------------------- /Android/What's Play App Signing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's Play App Signing.md -------------------------------------------------------------------------------- /Android/What's Proguard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's Proguard.md -------------------------------------------------------------------------------- /Android/What's RecyclerView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's RecyclerView.md -------------------------------------------------------------------------------- /Android/What's Room.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's Room.md -------------------------------------------------------------------------------- /Android/What's Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's Service.md -------------------------------------------------------------------------------- /Android/What's View.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's View.md -------------------------------------------------------------------------------- /Android/What's ViewGroup How are they different from Views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's ViewGroup How are they different from Views.md -------------------------------------------------------------------------------- /Android/What's ViewModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's ViewModel.md -------------------------------------------------------------------------------- /Android/What's ViewStub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's ViewStub.md -------------------------------------------------------------------------------- /Android/What's Widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's Widget.md -------------------------------------------------------------------------------- /Android/What's WorkManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's WorkManager.md -------------------------------------------------------------------------------- /Android/What's dark theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's dark theme.md -------------------------------------------------------------------------------- /Android/What's data binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/What's data binding.md -------------------------------------------------------------------------------- /Android/res/activity_lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/activity_lifecycle.png -------------------------------------------------------------------------------- /Android/res/anr_example_framed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/anr_example_framed.png -------------------------------------------------------------------------------- /Android/res/app_modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/app_modules.png -------------------------------------------------------------------------------- /Android/res/app_signing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/app_signing.png -------------------------------------------------------------------------------- /Android/res/appearance_affecting_spans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/appearance_affecting_spans.png -------------------------------------------------------------------------------- /Android/res/build_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/build_type.png -------------------------------------------------------------------------------- /Android/res/cold_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/cold_start.png -------------------------------------------------------------------------------- /Android/res/compose_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/compose_1.png -------------------------------------------------------------------------------- /Android/res/compose_phases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/compose_phases.svg -------------------------------------------------------------------------------- /Android/res/compose_phases_state_read_draw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/compose_phases_state_read_draw.svg -------------------------------------------------------------------------------- /Android/res/content_provider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/content_provider.jpg -------------------------------------------------------------------------------- /Android/res/context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/context.png -------------------------------------------------------------------------------- /Android/res/context_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/context_table.png -------------------------------------------------------------------------------- /Android/res/data_modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/data_modules.png -------------------------------------------------------------------------------- /Android/res/debug_broadcast_receiver_timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/debug_broadcast_receiver_timeout.png -------------------------------------------------------------------------------- /Android/res/debug_content_provider_anr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/debug_content_provider_anr.png -------------------------------------------------------------------------------- /Android/res/debug_execute_service_anr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/debug_execute_service_anr.png -------------------------------------------------------------------------------- /Android/res/debug_input_dispatch_anr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/debug_input_dispatch_anr.png -------------------------------------------------------------------------------- /Android/res/diagram_backstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/diagram_backstack.png -------------------------------------------------------------------------------- /Android/res/diagram_multitasking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/diagram_multitasking.png -------------------------------------------------------------------------------- /Android/res/downloadable_fonts_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/downloadable_fonts_process.png -------------------------------------------------------------------------------- /Android/res/event_tasks_flowchart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/event_tasks_flowchart.svg -------------------------------------------------------------------------------- /Android/res/feature_modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/feature_modules.png -------------------------------------------------------------------------------- /Android/res/fragment-a-to-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/fragment-a-to-b.png -------------------------------------------------------------------------------- /Android/res/fragment_add_replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/fragment_add_replace.png -------------------------------------------------------------------------------- /Android/res/fragment_lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/fragment_lifecycle.png -------------------------------------------------------------------------------- /Android/res/fragment_stop_save_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/fragment_stop_save_order.png -------------------------------------------------------------------------------- /Android/res/fragments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/fragments.png -------------------------------------------------------------------------------- /Android/res/handler_looper_message.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/handler_looper_message.jpeg -------------------------------------------------------------------------------- /Android/res/hot_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/hot_start.png -------------------------------------------------------------------------------- /Android/res/layout-editor_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/layout-editor_2x.png -------------------------------------------------------------------------------- /Android/res/lifecycle_states.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/lifecycle_states.svg -------------------------------------------------------------------------------- /Android/res/lint_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/lint_tool.png -------------------------------------------------------------------------------- /Android/res/metric_affecting_spans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/metric_affecting_spans.png -------------------------------------------------------------------------------- /Android/res/modularization_dependency_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/modularization_dependency_graph.png -------------------------------------------------------------------------------- /Android/res/module_mediator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/module_mediator.png -------------------------------------------------------------------------------- /Android/res/modules_di_concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/modules_di_concept.png -------------------------------------------------------------------------------- /Android/res/modules_shared_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/modules_shared_data.png -------------------------------------------------------------------------------- /Android/res/ninepatch_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/ninepatch_raw.png -------------------------------------------------------------------------------- /Android/res/nodpi_anydpi_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/nodpi_anydpi_source.png -------------------------------------------------------------------------------- /Android/res/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/notification.png -------------------------------------------------------------------------------- /Android/res/paging_library_architecture.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/paging_library_architecture.webp -------------------------------------------------------------------------------- /Android/res/paragraph_affecting_spans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/paragraph_affecting_spans.png -------------------------------------------------------------------------------- /Android/res/pass-parent-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/pass-parent-child.png -------------------------------------------------------------------------------- /Android/res/pinned_shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/pinned_shortcuts.png -------------------------------------------------------------------------------- /Android/res/product_flavor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/product_flavor.png -------------------------------------------------------------------------------- /Android/res/room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/room.png -------------------------------------------------------------------------------- /Android/res/service_lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/service_lifecycle.png -------------------------------------------------------------------------------- /Android/res/singleInstance_scenario_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/singleInstance_scenario_1.png -------------------------------------------------------------------------------- /Android/res/singleTask_scenario_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/singleTask_scenario_1.png -------------------------------------------------------------------------------- /Android/res/singleTask_scenario_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/singleTask_scenario_1_2.png -------------------------------------------------------------------------------- /Android/res/singleTask_scenario_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/singleTask_scenario_2.png -------------------------------------------------------------------------------- /Android/res/singleTop_scenario_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/singleTop_scenario_1.png -------------------------------------------------------------------------------- /Android/res/singleTop_scenario_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/singleTop_scenario_2.png -------------------------------------------------------------------------------- /Android/res/sizes-phone-tablet_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/sizes-phone-tablet_2x.png -------------------------------------------------------------------------------- /Android/res/slices_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/slices_image_1.png -------------------------------------------------------------------------------- /Android/res/slices_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/slices_image_2.png -------------------------------------------------------------------------------- /Android/res/slices_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/slices_image_3.png -------------------------------------------------------------------------------- /Android/res/slices_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/slices_image_4.png -------------------------------------------------------------------------------- /Android/res/slices_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/slices_image_5.png -------------------------------------------------------------------------------- /Android/res/slices_image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/slices_image_6.png -------------------------------------------------------------------------------- /Android/res/slices_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/slices_image_7.png -------------------------------------------------------------------------------- /Android/res/spannable_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/spannable_table.png -------------------------------------------------------------------------------- /Android/res/test_modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/test_modules.png -------------------------------------------------------------------------------- /Android/res/user_task_flowchart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/user_task_flowchart.svg -------------------------------------------------------------------------------- /Android/res/view_hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/view_hierarchy.png -------------------------------------------------------------------------------- /Android/res/view_lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/view_lifecycle.png -------------------------------------------------------------------------------- /Android/res/viewbinding_vs_databinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/viewbinding_vs_databinding.png -------------------------------------------------------------------------------- /Android/res/viewmodel_lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/viewmodel_lifecycle.png -------------------------------------------------------------------------------- /Android/res/wear_dep_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/wear_dep_graph.png -------------------------------------------------------------------------------- /Android/res/work_manager_criteria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Android/res/work_manager_criteria.png -------------------------------------------------------------------------------- /General/Composition vs Inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/Composition vs Inheritance.md -------------------------------------------------------------------------------- /General/Concurrency vs Parallelism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/Concurrency vs Parallelism.md -------------------------------------------------------------------------------- /General/Describe Scrum and Kanban.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/Describe Scrum and Kanban.md -------------------------------------------------------------------------------- /General/Difference between git rebase and git merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/Difference between git rebase and git merge.md -------------------------------------------------------------------------------- /General/OOP principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/OOP principles.md -------------------------------------------------------------------------------- /General/SOAP vs REST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/SOAP vs REST.md -------------------------------------------------------------------------------- /General/SOLID principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/SOLID principles.md -------------------------------------------------------------------------------- /General/What do you know about CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about CI.md -------------------------------------------------------------------------------- /General/What do you know about DI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about DI.md -------------------------------------------------------------------------------- /General/What do you know about GraphQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about GraphQL.md -------------------------------------------------------------------------------- /General/What do you know about OSI model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about OSI model.md -------------------------------------------------------------------------------- /General/What do you know about Protocol Buffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about Protocol Buffers.md -------------------------------------------------------------------------------- /General/What do you know about SOAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about SOAP.md -------------------------------------------------------------------------------- /General/What do you know about Symmetric Key Encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about Symmetric Key Encryption.md -------------------------------------------------------------------------------- /General/What do you know about TCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about TCP.md -------------------------------------------------------------------------------- /General/What do you know about UDP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about UDP.md -------------------------------------------------------------------------------- /General/What do you know about URI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about URI.md -------------------------------------------------------------------------------- /General/What do you know about URL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about URL.md -------------------------------------------------------------------------------- /General/What do you know about YAGNI, KISS, DRY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about YAGNI, KISS, DRY.md -------------------------------------------------------------------------------- /General/What do you know about asymmetric key encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about asymmetric key encryption.md -------------------------------------------------------------------------------- /General/What do you know about certificate pinning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about certificate pinning.md -------------------------------------------------------------------------------- /General/What do you know about certificate transparency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about certificate transparency.md -------------------------------------------------------------------------------- /General/What do you know about ssl certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about ssl certificates.md -------------------------------------------------------------------------------- /General/What do you know about waterfall methodology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What do you know about waterfall methodology.md -------------------------------------------------------------------------------- /General/What is Agile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is Agile.md -------------------------------------------------------------------------------- /General/What is Extreme Programming (XP).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is Extreme Programming (XP).md -------------------------------------------------------------------------------- /General/What is Feature Driven Development (FDD).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is Feature Driven Development (FDD).md -------------------------------------------------------------------------------- /General/What is Kanban.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is Kanban.md -------------------------------------------------------------------------------- /General/What is Man-in-the-middle attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is Man-in-the-middle attack.md -------------------------------------------------------------------------------- /General/What is REST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is REST.md -------------------------------------------------------------------------------- /General/What is Scrum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is Scrum.md -------------------------------------------------------------------------------- /General/What is cohesion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is cohesion.md -------------------------------------------------------------------------------- /General/What is coupling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is coupling.md -------------------------------------------------------------------------------- /General/What is deadlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is deadlock.md -------------------------------------------------------------------------------- /General/What is encryption. What types of encryption keys do you know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is encryption. What types of encryption keys do you know.md -------------------------------------------------------------------------------- /General/What is livelock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is livelock.md -------------------------------------------------------------------------------- /General/What is the difference between Aggregation and Composition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is the difference between Aggregation and Composition.md -------------------------------------------------------------------------------- /General/What is the difference between DI and Service Locator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is the difference between DI and Service Locator.md -------------------------------------------------------------------------------- /General/What is the difference between GET and POST request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is the difference between GET and POST request.md -------------------------------------------------------------------------------- /General/What is the difference between HTTP and HTTPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is the difference between HTTP and HTTPS.md -------------------------------------------------------------------------------- /General/What is the difference between PUT and POST request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is the difference between PUT and POST request.md -------------------------------------------------------------------------------- /General/What is the difference between TCP and UDP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is the difference between TCP and UDP.md -------------------------------------------------------------------------------- /General/What is the difference between abstraction and encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is the difference between abstraction and encapsulation.md -------------------------------------------------------------------------------- /General/What is the difference between git pull and git fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is the difference between git pull and git fetch.md -------------------------------------------------------------------------------- /General/What is the difference between symmetric and asymmetric encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/What is the difference between symmetric and asymmetric encryption.md -------------------------------------------------------------------------------- /General/res/aggregation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/aggregation.jpg -------------------------------------------------------------------------------- /General/res/agile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/agile.png -------------------------------------------------------------------------------- /General/res/asymmetric-encryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/asymmetric-encryption.png -------------------------------------------------------------------------------- /General/res/asymmetric_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/asymmetric_base.png -------------------------------------------------------------------------------- /General/res/ci_basics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/ci_basics.svg -------------------------------------------------------------------------------- /General/res/cohesion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/cohesion.png -------------------------------------------------------------------------------- /General/res/composition.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/composition.jpg -------------------------------------------------------------------------------- /General/res/concurrency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/concurrency.png -------------------------------------------------------------------------------- /General/res/coupling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/coupling.png -------------------------------------------------------------------------------- /General/res/ct_components.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/ct_components.jpeg -------------------------------------------------------------------------------- /General/res/ct_works.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/ct_works.jpeg -------------------------------------------------------------------------------- /General/res/encryption_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/encryption_base.png -------------------------------------------------------------------------------- /General/res/fdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/fdd.png -------------------------------------------------------------------------------- /General/res/graphql_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/graphql_general.png -------------------------------------------------------------------------------- /General/res/man_in_the_middle_attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/man_in_the_middle_attack.png -------------------------------------------------------------------------------- /General/res/osi_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/osi_model.png -------------------------------------------------------------------------------- /General/res/parallelism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/parallelism.png -------------------------------------------------------------------------------- /General/res/proto_buffers_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/proto_buffers_types.png -------------------------------------------------------------------------------- /General/res/soap_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/soap_message.png -------------------------------------------------------------------------------- /General/res/soap_protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/soap_protocol.png -------------------------------------------------------------------------------- /General/res/ssl_certificate_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/ssl_certificate_work.png -------------------------------------------------------------------------------- /General/res/symmetric_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/symmetric_base.png -------------------------------------------------------------------------------- /General/res/symmetric_encryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/symmetric_encryption.png -------------------------------------------------------------------------------- /General/res/tcp_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/tcp_header.jpg -------------------------------------------------------------------------------- /General/res/udp_datagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/udp_datagram.png -------------------------------------------------------------------------------- /General/res/uri_syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/uri_syntax.png -------------------------------------------------------------------------------- /General/res/waterfall_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/waterfall_model.png -------------------------------------------------------------------------------- /General/res/xp_lifycycle.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/xp_lifycycle.webp -------------------------------------------------------------------------------- /General/res/yagni_image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/General/res/yagni_image.webp -------------------------------------------------------------------------------- /Java/ArrayList vs LinkedList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/ArrayList vs LinkedList.md -------------------------------------------------------------------------------- /Java/Can a constructor be inherited.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Can a constructor be inherited.md -------------------------------------------------------------------------------- /Java/Can a static method be overridden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Can a static method be overridden.md -------------------------------------------------------------------------------- /Java/Comparable interface in java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Comparable interface in java.md -------------------------------------------------------------------------------- /Java/Describe Deque interface from java collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Describe Deque interface from java collection.md -------------------------------------------------------------------------------- /Java/Describe List interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Describe List interface.md -------------------------------------------------------------------------------- /Java/Describe Queue interface from java collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Describe Queue interface from java collection.md -------------------------------------------------------------------------------- /Java/Describe map interface from java collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Describe map interface from java collection.md -------------------------------------------------------------------------------- /Java/Describe set interface from java collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Describe set interface from java collection.md -------------------------------------------------------------------------------- /Java/Difference between Semaphore and Monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Difference between Semaphore and Monitor.md -------------------------------------------------------------------------------- /Java/Difference between int and Integer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Difference between int and Integer.md -------------------------------------------------------------------------------- /Java/Difference between static and regular nested classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Difference between static and regular nested classes.md -------------------------------------------------------------------------------- /Java/Different between Array and ArrayList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Different between Array and ArrayList.md -------------------------------------------------------------------------------- /Java/Do objects get passed by reference or value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Do objects get passed by reference or value.md -------------------------------------------------------------------------------- /Java/Exception. Checked and Unchecked..md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Exception. Checked and Unchecked..md -------------------------------------------------------------------------------- /Java/Generics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Generics.md -------------------------------------------------------------------------------- /Java/HashSet vs TreeSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/HashSet vs TreeSet.md -------------------------------------------------------------------------------- /Java/Hashtable vs ConcurrentHashMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Hashtable vs ConcurrentHashMap.md -------------------------------------------------------------------------------- /Java/How HashMap works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/How HashMap works.md -------------------------------------------------------------------------------- /Java/Memory model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Memory model.md -------------------------------------------------------------------------------- /Java/Method signature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/Method signature.md -------------------------------------------------------------------------------- /Java/References types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/References types.md -------------------------------------------------------------------------------- /Java/What are anonymous classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What are anonymous classes.md -------------------------------------------------------------------------------- /Java/What are lambda expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What are lambda expressions.md -------------------------------------------------------------------------------- /Java/What are the basic interfaces of Java Collections Framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What are the basic interfaces of Java Collections Framework.md -------------------------------------------------------------------------------- /Java/What are the methods of Object class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What are the methods of Object class.md -------------------------------------------------------------------------------- /Java/What do you know about ArrayList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about ArrayList.md -------------------------------------------------------------------------------- /Java/What do you know about Comparator interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about Comparator interface.md -------------------------------------------------------------------------------- /Java/What do you know about ConcurrentHashMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about ConcurrentHashMap.md -------------------------------------------------------------------------------- /Java/What do you know about EnumMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about EnumMap.md -------------------------------------------------------------------------------- /Java/What do you know about EnumSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about EnumSet.md -------------------------------------------------------------------------------- /Java/What do you know about HashSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about HashSet.md -------------------------------------------------------------------------------- /Java/What do you know about Hashtable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about Hashtable.md -------------------------------------------------------------------------------- /Java/What do you know about Iterator interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about Iterator interface.md -------------------------------------------------------------------------------- /Java/What do you know about LinkedHashMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about LinkedHashMap.md -------------------------------------------------------------------------------- /Java/What do you know about LinkedHashSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about LinkedHashSet.md -------------------------------------------------------------------------------- /Java/What do you know about LinkedList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about LinkedList.md -------------------------------------------------------------------------------- /Java/What do you know about Serializable interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about Serializable interface.md -------------------------------------------------------------------------------- /Java/What do you know about Stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about Stack.md -------------------------------------------------------------------------------- /Java/What do you know about Stream interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about Stream interface.md -------------------------------------------------------------------------------- /Java/What do you know about TreeMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about TreeMap.md -------------------------------------------------------------------------------- /Java/What do you know about TreeSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about TreeSet.md -------------------------------------------------------------------------------- /Java/What do you know about Vector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about Vector.md -------------------------------------------------------------------------------- /Java/What do you know about access modifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about access modifiers.md -------------------------------------------------------------------------------- /Java/What do you know about default method in interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about default method in interface.md -------------------------------------------------------------------------------- /Java/What do you know about double check pattern singleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about double check pattern singleton.md -------------------------------------------------------------------------------- /Java/What do you know about java record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about java record.md -------------------------------------------------------------------------------- /Java/What do you know about try-catch-finally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about try-catch-finally.md -------------------------------------------------------------------------------- /Java/What do you know about wildcard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What do you know about wildcard.md -------------------------------------------------------------------------------- /Java/What does the keyword synchronized mean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What does the keyword synchronized mean.md -------------------------------------------------------------------------------- /Java/What is Java's Garbage Collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is Java's Garbage Collection.md -------------------------------------------------------------------------------- /Java/What is String Pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is String Pool.md -------------------------------------------------------------------------------- /Java/What is casting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is casting.md -------------------------------------------------------------------------------- /Java/What is enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is enum.md -------------------------------------------------------------------------------- /Java/What is immutable object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is immutable object.md -------------------------------------------------------------------------------- /Java/What is memory leak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is memory leak.md -------------------------------------------------------------------------------- /Java/What is object monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is object monitor.md -------------------------------------------------------------------------------- /Java/What is the difference between JDK, JRE and JVM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is the difference between JDK, JRE and JVM.md -------------------------------------------------------------------------------- /Java/What is the difference between String, StringBuilder and StringBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is the difference between String, StringBuilder and StringBuffer.md -------------------------------------------------------------------------------- /Java/What is the difference between a Stream and an Iterator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is the difference between a Stream and an Iterator.md -------------------------------------------------------------------------------- /Java/What is the difference between final, finally and finalize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is the difference between final, finally and finalize.md -------------------------------------------------------------------------------- /Java/What is the difference between overriding and overloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is the difference between overriding and overloading.md -------------------------------------------------------------------------------- /Java/What is transient keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is transient keyword.md -------------------------------------------------------------------------------- /Java/What is volatile keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What is volatile keyword.md -------------------------------------------------------------------------------- /Java/What's Clonaeble interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What's Clonaeble interface.md -------------------------------------------------------------------------------- /Java/What's Comparable and Comparator interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What's Comparable and Comparator interface.md -------------------------------------------------------------------------------- /Java/What's Executor interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What's Executor interface.md -------------------------------------------------------------------------------- /Java/What's Semaphore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What's Semaphore.md -------------------------------------------------------------------------------- /Java/What's interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/What's interface.md -------------------------------------------------------------------------------- /Java/res/access_modifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/access_modifier.png -------------------------------------------------------------------------------- /Java/res/collection.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/collection.jpeg -------------------------------------------------------------------------------- /Java/res/deque_interface_java.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/deque_interface_java.jpeg -------------------------------------------------------------------------------- /Java/res/exception_hierarchy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/exception_hierarchy.jpg -------------------------------------------------------------------------------- /Java/res/garbage_collection_generations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/garbage_collection_generations.png -------------------------------------------------------------------------------- /Java/res/garbage_collection_step_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/garbage_collection_step_1.png -------------------------------------------------------------------------------- /Java/res/garbage_collection_step_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/garbage_collection_step_2.png -------------------------------------------------------------------------------- /Java/res/garbage_collection_step_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/garbage_collection_step_3.png -------------------------------------------------------------------------------- /Java/res/iterators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/iterators.png -------------------------------------------------------------------------------- /Java/res/java_list_class_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/java_list_class_diagram.png -------------------------------------------------------------------------------- /Java/res/java_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/java_map.png -------------------------------------------------------------------------------- /Java/res/java_memory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/java_memory.jpg -------------------------------------------------------------------------------- /Java/res/java_memory_leak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/java_memory_leak.png -------------------------------------------------------------------------------- /Java/res/java_set_implementation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/java_set_implementation.png -------------------------------------------------------------------------------- /Java/res/jdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/jdk.png -------------------------------------------------------------------------------- /Java/res/jre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/jre.png -------------------------------------------------------------------------------- /Java/res/linkedlist-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/linkedlist-node.png -------------------------------------------------------------------------------- /Java/res/linkedlist_implemenation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/linkedlist_implemenation.png -------------------------------------------------------------------------------- /Java/res/metaspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/metaspace.png -------------------------------------------------------------------------------- /Java/res/queue_interface_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/queue_interface_java.png -------------------------------------------------------------------------------- /Java/res/semaphore.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/semaphore.jpeg -------------------------------------------------------------------------------- /Java/res/serialize_deserialize_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/serialize_deserialize_java.png -------------------------------------------------------------------------------- /Java/res/stack_and_heap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/stack_and_heap.png -------------------------------------------------------------------------------- /Java/res/stack_vs_heap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/stack_vs_heap.png -------------------------------------------------------------------------------- /Java/res/string_pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/string_pool.png -------------------------------------------------------------------------------- /Java/res/volatile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Java/res/volatile.png -------------------------------------------------------------------------------- /Kotlin/Crossinline keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/Crossinline keyword.md -------------------------------------------------------------------------------- /Kotlin/Default method in kotlin interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/Default method in kotlin interface.md -------------------------------------------------------------------------------- /Kotlin/Describe constructors invocation order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/Describe constructors invocation order.md -------------------------------------------------------------------------------- /Kotlin/Describe nullability and null safety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/Describe nullability and null safety.md -------------------------------------------------------------------------------- /Kotlin/Difference between fold and reduce in Kotlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/Difference between fold and reduce in Kotlin.md -------------------------------------------------------------------------------- /Kotlin/Enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/Enum.md -------------------------------------------------------------------------------- /Kotlin/Generics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/Generics.md -------------------------------------------------------------------------------- /Kotlin/Inline keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/Inline keyword.md -------------------------------------------------------------------------------- /Kotlin/Kotlin collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/Kotlin collections.md -------------------------------------------------------------------------------- /Kotlin/Scope functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/Scope functions.md -------------------------------------------------------------------------------- /Kotlin/Visibility modifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/Visibility modifiers.md -------------------------------------------------------------------------------- /Kotlin/What are coroutines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What are coroutines.md -------------------------------------------------------------------------------- /Kotlin/What do you know about Any, Nothing, Unit types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about Any, Nothing, Unit types.md -------------------------------------------------------------------------------- /Kotlin/What do you know about Channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about Channels.md -------------------------------------------------------------------------------- /Kotlin/What do you know about Coroutine Job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about Coroutine Job.md -------------------------------------------------------------------------------- /Kotlin/What do you know about Flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about Flow.md -------------------------------------------------------------------------------- /Kotlin/What do you know about JvmOverloads annotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about JvmOverloads annotation.md -------------------------------------------------------------------------------- /Kotlin/What do you know about JvmStatic and JvmField annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about JvmStatic and JvmField annotations.md -------------------------------------------------------------------------------- /Kotlin/What do you know about StateFlow and SharedFlow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about StateFlow and SharedFlow.md -------------------------------------------------------------------------------- /Kotlin/What do you know about companion object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about companion object.md -------------------------------------------------------------------------------- /Kotlin/What do you know about data classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about data classes.md -------------------------------------------------------------------------------- /Kotlin/What do you know about data objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about data objects.md -------------------------------------------------------------------------------- /Kotlin/What do you know about delegated properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about delegated properties.md -------------------------------------------------------------------------------- /Kotlin/What do you know about extensions?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about extensions?.md -------------------------------------------------------------------------------- /Kotlin/What do you know about functional interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about functional interfaces.md -------------------------------------------------------------------------------- /Kotlin/What do you know about lateinit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about lateinit.md -------------------------------------------------------------------------------- /Kotlin/What do you know about object keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about object keyword.md -------------------------------------------------------------------------------- /Kotlin/What do you know about operator overloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about operator overloading.md -------------------------------------------------------------------------------- /Kotlin/What do you know about property references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about property references.md -------------------------------------------------------------------------------- /Kotlin/What do you know about reified keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about reified keyword.md -------------------------------------------------------------------------------- /Kotlin/What do you know about sealed classes and interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about sealed classes and interfaces.md -------------------------------------------------------------------------------- /Kotlin/What do you know about type aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What do you know about type aliases.md -------------------------------------------------------------------------------- /Kotlin/What is Coroutine Scope and how is that different from Coroutine Context?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What is Coroutine Scope and how is that different from Coroutine Context?.md -------------------------------------------------------------------------------- /Kotlin/What is destructuring declarations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What is destructuring declarations.md -------------------------------------------------------------------------------- /Kotlin/What is the difference between * and Any in generics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What is the difference between * and Any in generics.md -------------------------------------------------------------------------------- /Kotlin/What is the difference between abstract class and interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What is the difference between abstract class and interface.md -------------------------------------------------------------------------------- /Kotlin/What is the difference between functional interfaces and type aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What is the difference between functional interfaces and type aliases.md -------------------------------------------------------------------------------- /Kotlin/What is the difference between lazy and lateinit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What is the difference between lazy and lateinit.md -------------------------------------------------------------------------------- /Kotlin/What is the difference between nested class and inner class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What is the difference between nested class and inner class.md -------------------------------------------------------------------------------- /Kotlin/What is the difference between suspending vs. blocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What is the difference between suspending vs. blocking.md -------------------------------------------------------------------------------- /Kotlin/What's Ranges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What's Ranges.md -------------------------------------------------------------------------------- /Kotlin/What's Sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What's Sequence.md -------------------------------------------------------------------------------- /Kotlin/What's a const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What's a const.md -------------------------------------------------------------------------------- /Kotlin/What's difference between == and ===.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What's difference between == and ===.md -------------------------------------------------------------------------------- /Kotlin/What's difference between launch and async.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What's difference between launch and async.md -------------------------------------------------------------------------------- /Kotlin/What's infix function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What's infix function.md -------------------------------------------------------------------------------- /Kotlin/What's init block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What's init block.md -------------------------------------------------------------------------------- /Kotlin/What's inline class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/What's inline class.md -------------------------------------------------------------------------------- /Kotlin/code/Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/code/Questions.md -------------------------------------------------------------------------------- /Kotlin/map vs flatMap in collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/map vs flatMap in collections.md -------------------------------------------------------------------------------- /Kotlin/res/collections-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/res/collections-diagram.png -------------------------------------------------------------------------------- /Kotlin/res/coroutine_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/res/coroutine_context.png -------------------------------------------------------------------------------- /Kotlin/res/coroutine_scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/res/coroutine_scope.png -------------------------------------------------------------------------------- /Kotlin/res/crossinline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/res/crossinline.png -------------------------------------------------------------------------------- /Kotlin/res/flow_entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/res/flow_entities.png -------------------------------------------------------------------------------- /Kotlin/res/nullability_compile_time_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/res/nullability_compile_time_error.png -------------------------------------------------------------------------------- /Kotlin/res/scope_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/res/scope_function.png -------------------------------------------------------------------------------- /Kotlin/res/visibility_modifiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/res/visibility_modifiers.png -------------------------------------------------------------------------------- /Kotlin/val mutableList vs var immutableList. When to use which.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Kotlin/val mutableList vs var immutableList. When to use which.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/LICENSE -------------------------------------------------------------------------------- /Libraries/Main annotations in Dagger 2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/Main annotations in Dagger 2.md -------------------------------------------------------------------------------- /Libraries/Popular libraries for image loading on Android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/Popular libraries for image loading on Android.md -------------------------------------------------------------------------------- /Libraries/What JSON serialization & deserialization libraries do you know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/What JSON serialization & deserialization libraries do you know.md -------------------------------------------------------------------------------- /Libraries/What do you know about Kodein.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/What do you know about Kodein.md -------------------------------------------------------------------------------- /Libraries/What do you know about Koin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/What do you know about Koin.md -------------------------------------------------------------------------------- /Libraries/What do you know about OkHttp interceptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/What do you know about OkHttp interceptors.md -------------------------------------------------------------------------------- /Libraries/What do you know about OkHttp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/What do you know about OkHttp.md -------------------------------------------------------------------------------- /Libraries/What do you know about Realm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/What do you know about Realm.md -------------------------------------------------------------------------------- /Libraries/What do you know about Retrofit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/What do you know about Retrofit.md -------------------------------------------------------------------------------- /Libraries/What do you know about hilt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/What do you know about hilt.md -------------------------------------------------------------------------------- /Libraries/What the difference between @Bind and @Provides in Dagger 2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/What the difference between @Bind and @Provides in Dagger 2.md -------------------------------------------------------------------------------- /Libraries/What's Dagger 2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/What's Dagger 2.md -------------------------------------------------------------------------------- /Libraries/Which libraries for dependency injection you know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/Which libraries for dependency injection you know.md -------------------------------------------------------------------------------- /Libraries/res/hilt_hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/res/hilt_hierarchy.png -------------------------------------------------------------------------------- /Libraries/res/interceptors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Libraries/res/interceptors.png -------------------------------------------------------------------------------- /Patterns/Abstract factory pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Abstract factory pattern.md -------------------------------------------------------------------------------- /Patterns/Adapter pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Adapter pattern.md -------------------------------------------------------------------------------- /Patterns/Bridge pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Bridge pattern.md -------------------------------------------------------------------------------- /Patterns/Builder pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Builder pattern.md -------------------------------------------------------------------------------- /Patterns/Chain of Responsibility pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Chain of Responsibility pattern.md -------------------------------------------------------------------------------- /Patterns/Command pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Command pattern.md -------------------------------------------------------------------------------- /Patterns/Composite pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Composite pattern.md -------------------------------------------------------------------------------- /Patterns/Decorator pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Decorator pattern.md -------------------------------------------------------------------------------- /Patterns/Facade pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Facade pattern.md -------------------------------------------------------------------------------- /Patterns/Factory method pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Factory method pattern.md -------------------------------------------------------------------------------- /Patterns/Flyweight pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Flyweight pattern.md -------------------------------------------------------------------------------- /Patterns/Interpreter pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Interpreter pattern.md -------------------------------------------------------------------------------- /Patterns/Iterator pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Iterator pattern.md -------------------------------------------------------------------------------- /Patterns/MVI pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/MVI pattern.md -------------------------------------------------------------------------------- /Patterns/MVP pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/MVP pattern.md -------------------------------------------------------------------------------- /Patterns/MVVM pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/MVVM pattern.md -------------------------------------------------------------------------------- /Patterns/Mediator pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Mediator pattern.md -------------------------------------------------------------------------------- /Patterns/Memento pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Memento pattern.md -------------------------------------------------------------------------------- /Patterns/Observer pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Observer pattern.md -------------------------------------------------------------------------------- /Patterns/Prototype pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Prototype pattern.md -------------------------------------------------------------------------------- /Patterns/Proxy pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Proxy pattern.md -------------------------------------------------------------------------------- /Patterns/Service locator pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Service locator pattern.md -------------------------------------------------------------------------------- /Patterns/Singleton pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Singleton pattern.md -------------------------------------------------------------------------------- /Patterns/State pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/State pattern.md -------------------------------------------------------------------------------- /Patterns/Strategy pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Strategy pattern.md -------------------------------------------------------------------------------- /Patterns/Template method pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Template method pattern.md -------------------------------------------------------------------------------- /Patterns/Types of Design Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Types of Design Patterns.md -------------------------------------------------------------------------------- /Patterns/Visitor pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/Visitor pattern.md -------------------------------------------------------------------------------- /Patterns/res/facade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/res/facade.jpg -------------------------------------------------------------------------------- /Patterns/res/mvi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/res/mvi.png -------------------------------------------------------------------------------- /Patterns/res/mvp_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/res/mvp_android.png -------------------------------------------------------------------------------- /Patterns/res/mvvm_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/res/mvvm_android.png -------------------------------------------------------------------------------- /Patterns/res/state_pattern.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Patterns/res/state_pattern.jpeg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/README.md -------------------------------------------------------------------------------- /Rx/Give example of combining operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/Give example of combining operators.md -------------------------------------------------------------------------------- /Rx/Give example of conditional operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/Give example of conditional operators.md -------------------------------------------------------------------------------- /Rx/Give example of creating operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/Give example of creating operators.md -------------------------------------------------------------------------------- /Rx/Give example of error handling operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/Give example of error handling operators.md -------------------------------------------------------------------------------- /Rx/Give example of filtering operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/Give example of filtering operators.md -------------------------------------------------------------------------------- /Rx/Give example of mathematical and aggregate operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/Give example of mathematical and aggregate operators.md -------------------------------------------------------------------------------- /Rx/Give example of transforming operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/Give example of transforming operators.md -------------------------------------------------------------------------------- /Rx/Give example of utility operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/Give example of utility operators.md -------------------------------------------------------------------------------- /Rx/Observable types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/Observable types.md -------------------------------------------------------------------------------- /Rx/RepeatWhen vs RetryWhen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/RepeatWhen vs RetryWhen.md -------------------------------------------------------------------------------- /Rx/Schedulers types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/Schedulers types.md -------------------------------------------------------------------------------- /Rx/Subjects types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/Subjects types.md -------------------------------------------------------------------------------- /Rx/What do you know about observeOn operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/What do you know about observeOn operator.md -------------------------------------------------------------------------------- /Rx/What do you know about subscribeOn operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/What do you know about subscribeOn operator.md -------------------------------------------------------------------------------- /Rx/What is the difference between cold and hot observables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/What is the difference between cold and hot observables.md -------------------------------------------------------------------------------- /Rx/What's backpressure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/What's backpressure.md -------------------------------------------------------------------------------- /Rx/What's the difference between Concat Vs Merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/What's the difference between Concat Vs Merge.md -------------------------------------------------------------------------------- /Rx/What's the difference between map and flatMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/What's the difference between map and flatMap.md -------------------------------------------------------------------------------- /Rx/What's the difference between observeOn and subscribeOn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/What's the difference between observeOn and subscribeOn.md -------------------------------------------------------------------------------- /Rx/What’s the difference between flatMap(), concatMap() and switchMap().md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/What’s the difference between flatMap(), concatMap() and switchMap().md -------------------------------------------------------------------------------- /Rx/code/subscribeOn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/code/subscribeOn.md -------------------------------------------------------------------------------- /Rx/res/async_subject_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/async_subject_error.png -------------------------------------------------------------------------------- /Rx/res/async_subject_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/async_subject_success.png -------------------------------------------------------------------------------- /Rx/res/behavior_subject_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/behavior_subject_error.png -------------------------------------------------------------------------------- /Rx/res/behavior_subject_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/behavior_subject_success.png -------------------------------------------------------------------------------- /Rx/res/combining_combineLatest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/combining_combineLatest.png -------------------------------------------------------------------------------- /Rx/res/combining_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/combining_join.png -------------------------------------------------------------------------------- /Rx/res/combining_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/combining_merge.png -------------------------------------------------------------------------------- /Rx/res/combining_startWith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/combining_startWith.png -------------------------------------------------------------------------------- /Rx/res/combining_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/combining_switch.png -------------------------------------------------------------------------------- /Rx/res/combining_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/combining_zip.png -------------------------------------------------------------------------------- /Rx/res/concat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/concat.png -------------------------------------------------------------------------------- /Rx/res/concatMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/concatMap.png -------------------------------------------------------------------------------- /Rx/res/conditional_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/conditional_all.png -------------------------------------------------------------------------------- /Rx/res/conditional_amb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/conditional_amb.png -------------------------------------------------------------------------------- /Rx/res/conditional_contains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/conditional_contains.png -------------------------------------------------------------------------------- /Rx/res/conditional_defaultIfEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/conditional_defaultIfEmpty.png -------------------------------------------------------------------------------- /Rx/res/conditional_sequenceEqual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/conditional_sequenceEqual.png -------------------------------------------------------------------------------- /Rx/res/conditional_skipUntil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/conditional_skipUntil.png -------------------------------------------------------------------------------- /Rx/res/conditional_skipWhile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/conditional_skipWhile.png -------------------------------------------------------------------------------- /Rx/res/conditional_takeUntil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/conditional_takeUntil.png -------------------------------------------------------------------------------- /Rx/res/conditional_takeWhile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/conditional_takeWhile.png -------------------------------------------------------------------------------- /Rx/res/creating_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_create.png -------------------------------------------------------------------------------- /Rx/res/creating_defer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_defer.png -------------------------------------------------------------------------------- /Rx/res/creating_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_empty.png -------------------------------------------------------------------------------- /Rx/res/creating_from.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_from.png -------------------------------------------------------------------------------- /Rx/res/creating_interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_interval.png -------------------------------------------------------------------------------- /Rx/res/creating_just.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_just.png -------------------------------------------------------------------------------- /Rx/res/creating_never.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_never.png -------------------------------------------------------------------------------- /Rx/res/creating_range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_range.png -------------------------------------------------------------------------------- /Rx/res/creating_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_repeat.png -------------------------------------------------------------------------------- /Rx/res/creating_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_start.png -------------------------------------------------------------------------------- /Rx/res/creating_throw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_throw.png -------------------------------------------------------------------------------- /Rx/res/creating_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/creating_timer.png -------------------------------------------------------------------------------- /Rx/res/error_handling_catch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/error_handling_catch.png -------------------------------------------------------------------------------- /Rx/res/error_handling_onErrorResumeNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/error_handling_onErrorResumeNext.png -------------------------------------------------------------------------------- /Rx/res/error_handling_onErrorReturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/error_handling_onErrorReturn.png -------------------------------------------------------------------------------- /Rx/res/error_handling_onExceptionResumeNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/error_handling_onExceptionResumeNext.png -------------------------------------------------------------------------------- /Rx/res/error_handling_retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/error_handling_retry.png -------------------------------------------------------------------------------- /Rx/res/error_handling_retryMain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/error_handling_retryMain.png -------------------------------------------------------------------------------- /Rx/res/error_handling_retryWhen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/error_handling_retryWhen.png -------------------------------------------------------------------------------- /Rx/res/filtering_debounce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_debounce.png -------------------------------------------------------------------------------- /Rx/res/filtering_distinct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_distinct.png -------------------------------------------------------------------------------- /Rx/res/filtering_elementAt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_elementAt.png -------------------------------------------------------------------------------- /Rx/res/filtering_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_filter.png -------------------------------------------------------------------------------- /Rx/res/filtering_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_first.png -------------------------------------------------------------------------------- /Rx/res/filtering_ignoreElements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_ignoreElements.png -------------------------------------------------------------------------------- /Rx/res/filtering_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_last.png -------------------------------------------------------------------------------- /Rx/res/filtering_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_sample.png -------------------------------------------------------------------------------- /Rx/res/filtering_skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_skip.png -------------------------------------------------------------------------------- /Rx/res/filtering_skipLast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_skipLast.png -------------------------------------------------------------------------------- /Rx/res/filtering_take.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_take.png -------------------------------------------------------------------------------- /Rx/res/filtering_takeLast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/filtering_takeLast.png -------------------------------------------------------------------------------- /Rx/res/flatMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/flatMap.png -------------------------------------------------------------------------------- /Rx/res/math_concat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/math_concat.png -------------------------------------------------------------------------------- /Rx/res/math_count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/math_count.png -------------------------------------------------------------------------------- /Rx/res/math_reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/math_reduce.png -------------------------------------------------------------------------------- /Rx/res/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/merge.png -------------------------------------------------------------------------------- /Rx/res/observeOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/observeOn.png -------------------------------------------------------------------------------- /Rx/res/observeOn_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/observeOn_flow.png -------------------------------------------------------------------------------- /Rx/res/publish_subject_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/publish_subject_error.png -------------------------------------------------------------------------------- /Rx/res/publish_subject_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/publish_subject_success.png -------------------------------------------------------------------------------- /Rx/res/replay_subject_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/replay_subject_success.png -------------------------------------------------------------------------------- /Rx/res/schedulers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/schedulers.png -------------------------------------------------------------------------------- /Rx/res/serialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/serialize.png -------------------------------------------------------------------------------- /Rx/res/switchMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/switchMap.png -------------------------------------------------------------------------------- /Rx/res/transforming_buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/transforming_buffer.png -------------------------------------------------------------------------------- /Rx/res/transforming_flatMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/transforming_flatMap.png -------------------------------------------------------------------------------- /Rx/res/transforming_groupBy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/transforming_groupBy.png -------------------------------------------------------------------------------- /Rx/res/transforming_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/transforming_map.png -------------------------------------------------------------------------------- /Rx/res/transforming_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/transforming_scan.png -------------------------------------------------------------------------------- /Rx/res/transforming_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/transforming_window.png -------------------------------------------------------------------------------- /Rx/res/utility_delay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/utility_delay.png -------------------------------------------------------------------------------- /Rx/res/utility_dematerialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/utility_dematerialize.png -------------------------------------------------------------------------------- /Rx/res/utility_do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/utility_do.png -------------------------------------------------------------------------------- /Rx/res/utility_materialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/utility_materialize.png -------------------------------------------------------------------------------- /Rx/res/utility_schedulers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/utility_schedulers.png -------------------------------------------------------------------------------- /Rx/res/utility_subscribeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/utility_subscribeon.png -------------------------------------------------------------------------------- /Rx/res/utility_timeInterval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/utility_timeInterval.png -------------------------------------------------------------------------------- /Rx/res/utility_timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/utility_timeout.png -------------------------------------------------------------------------------- /Rx/res/utility_timestamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Rx/res/utility_timestamp.png -------------------------------------------------------------------------------- /Test Assignments/Google image search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Test Assignments/Google image search.md -------------------------------------------------------------------------------- /Testing/Describe Test Driven Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/Describe Test Driven Development.md -------------------------------------------------------------------------------- /Testing/Difference between JUnit 4 and JUnit 5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/Difference between JUnit 4 and JUnit 5.md -------------------------------------------------------------------------------- /Testing/Difference between mock, fake and stub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/Difference between mock, fake and stub.md -------------------------------------------------------------------------------- /Testing/Test pyramid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/Test pyramid.md -------------------------------------------------------------------------------- /Testing/Unit testing vs Functional testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/Unit testing vs Functional testing.md -------------------------------------------------------------------------------- /Testing/What do you know about BDD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/What do you know about BDD.md -------------------------------------------------------------------------------- /Testing/What do you know about Mockito library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/What do you know about Mockito library.md -------------------------------------------------------------------------------- /Testing/What do you know about espresso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/What do you know about espresso.md -------------------------------------------------------------------------------- /Testing/What is A_B testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/What is A_B testing.md -------------------------------------------------------------------------------- /Testing/What is JUnit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/What is JUnit.md -------------------------------------------------------------------------------- /Testing/What is functional testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/What is functional testing.md -------------------------------------------------------------------------------- /Testing/What is robolectric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/What is robolectric.md -------------------------------------------------------------------------------- /Testing/What is unit test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/What is unit test.md -------------------------------------------------------------------------------- /Testing/res/ab_testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/res/ab_testing.png -------------------------------------------------------------------------------- /Testing/res/tdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/res/tdd.png -------------------------------------------------------------------------------- /Testing/res/test_pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kirchhoff-/Android-Interview-Questions/HEAD/Testing/res/test_pyramid.png --------------------------------------------------------------------------------