Giter Club home page Giter Club logo

android-interview-questions's Introduction

Top 113 Android interview questions and answers in 2021.

You can check all 113 Android interview questions here πŸ‘‰ https://devinterview.io/dev/android-interview-questions


πŸ”Ή 1. Mention the difference between RelativeLayout and LinearLayout?

Answer:

  • Linear Layout β€” Arranges elements either vertically or horizontally. i.e. in a row or column.
  • Relative Layout β€” Arranges elements relative to parent or other elements.
Source:Β android.jlelse.euΒ  Β 


πŸ”Ή 2. What is the difference between Bitmap and Drawable in Android?

Answer:

  • A Bitmap is a representation of a bitmap image (something like java.awt.Image).
  • A Drawable is an abstraction of "something that can be drawn". It could be a Bitmap (wrapped up as a BitmapDrawable), but it could also be a solid color, a collection of other Drawable objects, or any number of other structures.
Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 3. What is a difference between Spannable and String?

Answer:

A Spannable allows to attach formatting information like bold, italic, ... to sub-sequences ("spans", thus the name) of the characters. It can be used whenever you want to represent "rich text".

Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 4. What is an Activity?

Answer:

An activity provides the window in which the app draws its UI. This window typically fills the screen, but may be smaller than the screen and float on top of other windows. Generally, one activity implements one screen in an app. For instance, one of an app’s activities may implement a Preferences screen, while another activity implements a Select Photo screen.

Source:Β github.comΒ  Β 


πŸ”Ή 5. Why is it recommended to use only the default constructor to create a Fragment?

Answer:

In short, Fragments need to have a no-args constructor for the Android system to instantiate them. Your Fragment subclasses need a public empty constructor as this is what's being called by the framework.

It is used in the case when device has to restore the state of a fragment. No data will be passed and a default fragment will be created and then the state will be restored. Since the system has no way to know what you passed in your constructor or your newInstance, default constructor will be used and saved bundle should be passed via onCreate after the fragment is actually instantiated with the default constructor.

Source:Β www.quora.comΒ  Β 


πŸ”Ή 6. How to persist data in an Android app?

Answer:

There are basically four different ways to store data in an Android app:

  1. Shared Preferences - to save primitive data in key-value pairs
  2. Internal Storage - you need to store data to the device filesystem, but you do not want any other app (even the user) to read this data
  3. External Storage - you might want the user to view the files and data saved by your app
  4. SQLite database
Source:Β www.androidauthority.comΒ  Β 


πŸ”Ή 7. Explain briefly all the Android application components

Answer:

App components are the essential building blocks of an Android app. Each component is an entry point through which the system or a user can enter your app.

There are four different types of app components:

  • Activities - An activity is the entry point for interacting with the user. It represents a single screen with a user interface.
  • Services - A service is a general-purpose entry point for keeping an app running in the background for all kinds of reasons. It is a component that runs in the background to perform long-running operations or to perform work for remote processes.
  • Broadcast receivers - A broadcast receiver is a component that enables the system to deliver events to the app outside of a regular user flow, allowing the app to respond to system-wide broadcast announcements.
  • Content providers - A content provider manages a shared set of app data that you can store in the file system, in a SQLite database, on the web, or on any other persistent storage location that your app can access.
Source:Β developer.android.comΒ  Β 


πŸ”Ή 8. How do I pass data between Activities in Android application?

Answer:

Problem

I have a scenario where, after logging in through a login page, there will be a sign-out button on each activity. Can you guide me on how to keep session id available to all activities?

The easiest way to do this would be to pass the session id to the signout activity in the Intent you're using to start the activity:

Intent intent = new Intent(getBaseContext(), SignoutActivity.class);
intent.putExtra("EXTRA_SESSION_ID", sessionId);
startActivity(intent);

Access that intent on next activity:

String sessionId = getIntent().getStringExtra("EXTRA_SESSION_ID");
Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 9. What is Dalvik?

Answer:

Dalvik is a Just In Time (JIT) compiler. By the term JIT, we mean to say that whenever you run your app in your mobile device then that part of your code that is needed for execution of your app will only be compiled at that moment and rest of the code will be compiled in the future when needed. The JIT or Just In Time compiles only a part of your code and it has a smaller memory footprint and due to this, it uses very less physical space on your device.

Source:Β blog.mindorks.comΒ  Β 


πŸ”Ή 10. Explain activity lifecycle

Answer:

As a user navigates through, out of, and back to your app, the Activity instances in your app transition through different states in their lifecycle.

To navigate transitions between stages of the activity lifecycle, the Activity class provides a core set of six callbacks: onCreate(), onStart(), onResume(), onPause(), onStop(), and onDestroy(). The system invokes each of these callbacks as an activity enters a new state.

Source:Β developer.android.comΒ  Β 


πŸ”Ή 11. What is an AsyncTask?

Answer:

AsyncTask is one of the easiest ways to implement parallelism in Android without having to deal with more complex methods like Threads. Though it offers a basic level of parallelism with the UI thread, it should not be used for longer operations (of, say, not more than 2 seconds).

AsyncTask has four methods

  • onPreExecute()
  • doInBackground()
  • onProgressUpdate()
  • onPostExecute()

where doInBackground() is the most important as it is where background computations are performed.

Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 12. Explain the build process in Android

Answer:

  1. First step involves compiling the resources folder (/res) using the aapt (android asset packaging tool) tool. These are compiled to a single class file called R.java. This is a class that just contains constants.
  2. Second step involves the java source code being compiled to .class files by javac, and then the class files are converted to Dalvik bytecode by the β€œdx” tool, which is included in the sdk β€˜tools’. The output is classes.dex.
  3. The final step involves the android apkbuilder which takes all the input and builds the apk (android packaging key) file.
Source:Β android.jlelse.euΒ  Β 


πŸ”Ή 13. What is ADB and what is it used for?

Answer:

ADB is the acronym for Android Debug Bridge, which is part of the Android SDK (Software Development Kit). It uses a client-server-model (i.e. adbd, the ADB daemon, is running on the device and can be connected to), and in most cases is used via an USB connection. It is also possible to use it via WiFi (wireless adb).

There's nothing you need to install on your Android device, as the ADB daemon (adbd) is already integrated into the Android OS. It is usually accessed via a command line interface from the PC, where either the full Android SDK is installed (several 30 MB download archive currently), or a massively stripped-down version for "non-developers", sometimes referred to as "Mini ADB" or "ADB essentials" (for Linux, this is only the adb executable; for Windows it's adb.exe plus two or three .dll files).

Source:Β developer.android.comΒ  Β 


πŸ”Ή 14. What’s the difference between onCreate() and onStart()?

Answer:

  • The onCreate() method is called once during the Activity lifecycle, either when the application starts, or when the Activity has been destroyed and then recreated, for example during a configuration change.
  • The onStart() method is called whenever the Activity becomes visible to the user, typically after onCreate() or onRestart().
Source:Β android.jlelse.euΒ  Β 


πŸ”Ή 15. In what situation should one use RecyclerView over ListView?

Answer:

RecyclerView was created as a ListView improvement, so yes, you can create an attached list with ListView control, but using RecyclerView is easier as it:

  • Reuses cells while scrolling up/down - this is possible with implementing View Holder in the ListView adapter, but it was an optional thing, while in the RecycleView it's the default way of writing adapter.
  • Decouples list from its container - so you can put list items easily at run time in the different containers (linearLayout, gridLayout) with setting LayoutManager.

To conclude, RecyclerView is a more flexible control for handling "list data" that follows patterns of delegation of concerns and leaves for itself only one task - recycling items.

Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 16. What is View Group? How are they different from Views?

Answer:

View: View objects are the basic building blocks of User Interface(UI) elements in Android. View is a simple rectangle box which responds to the user’s actions. Examples are EditText, Button, CheckBox etc. View refers to the android.view.View class, which is the base class of all UI classes.

ViewGroup: ViewGroup is the invisible container. It holds View and ViewGroup. For example, LinearLayout is the ViewGroup that contains Button(View), and other Layouts also. ViewGroup is the base class for Layouts.

Source:Β android.jlelse.euΒ  Β 


πŸ”Ή 17. How can I get the context in a fragment?

Answer:

You can use getActivity(), which returns the activity associated with a fragment. The activity is a context (since Activity extends Context).

You can also override the onAttach method of fragment:

public static class DummySectionFragment extends Fragment{
...
    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        DBHelper = new DatabaseHelper(activity);
    }
}
Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 18. What is Armv7?

Answer:

There are 3 CPU architectures in Android:

  • ARMv7 is the most common as it is optimised for battery consumption.
  • ARM64 is an evolved version of that that supports 64-bit processing for more powerful computing.
  • ARMx86, is the least used for these three, since it is not battery friendly. It is more powerful than the other two.
Source:Β android.jlelse.euΒ  Β 


πŸ”Ή 19. What is the Dalvik Virtual Machine?

Answer:

The Dalvik Virtual Machine (DVM) is an android virtual machine optimized for mobile devices. It optimizes the virtual machine for memory, battery life and performance.

The Dex compiler converts the class files into the .dex file that run on the Dalvik VM. Multiple class files are converted into one dex file.

Source:Β www.javatpoint.comΒ  Β 


πŸ”Ή 20. How does the OutOfMemory happens?

Answer:

Out of memory error is very common error when you are developing for a application that deals with multiple images sets or large bitmaps or some Animation stuff. In Android, every application runs in a Linux Process. Each Linux Process has a Virtual Machine (Dalvik Virtual Machine) running inside it. There is a limit on the memory a process can demand and it is different for different devices and also differs for phones and tablets. When some process demands a higher memory than its limit it causes a error i.e Out of memory error.

There are number of reasons why we get a Out of memory errors. Some of those are:

  1. You are doing some operation that continuously demands a lot of memory and at some point it goes beyond the max heap memory limit of a process.

  2. You are leaking some memory i.e you didn’t make the previous objects you allocated eligible for Garbage Collection (GC). This is called Memory leak.

  3. You are dealing with large bitmaps and loading all of them at run time. You have to deal very carefully with large bitmaps by loading the size that you need not the whole bitmap at once and then do scaling.

Source:Β blogs.innovationm.comΒ  Β 


πŸ”Ή 21. What is an Intent in Android?

Answer:

An Intent is basically a message that is passed between components (such as Activities, Services, Broadcast Receivers, and Content Providers).So, it is almost equivalent to parameters passed to API calls. The fundamental differences between API calls and invoking components via intents are:

  • API calls are synchronous while intent-based invocations are asynchronous.
  • API calls are compile-time binding while intent-based calls are run-time binding.

To listen for an broadcast intent (like the phone ringing, or an SMS is received), you implement a broadcast receiver, which will be passed the intent. To declare that you can handle another's app intent like "take picture", you declare an intent filter in your app's manifest file.

If you want to fire off an intent to do something, like pop up the dialer, you fire off an intent saying you will.

An Intent provides a facility for performing late runtime binding between the code in different applications.

Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 22. Tell about Constraint Layout

Answer:

ConstraintLayout allows you to create large and complex layouts with a flat view hierarchy (no nested view groups). It's similar to RelativeLayout in that all views are laid out according to relationships between sibling views and the parent layout, but it's more flexible than RelativeLayout and easier to use with Android Studio's Layout Editor.

Intention of ConstraintLayout is to optimize and flatten the view hierarchy of your layouts by applying some rules to each view to avoid nesting.

Source:Β developer.android.comΒ  Β 


πŸ”Ή 23. What is a ContentProvider and what is it typically used for?

Answer:

A content provider manages access to a central repository of data. A provider is part of an Android application, which often provides its own UI for working with the data. However, content providers are primarily intended to be used by other applications, which access the provider using a provider client object.

Typically you work with content providers in one of two scenarios;

  • you may want to implement code to access an existing content provider in another application, or
  • you may want to create a new content provider in your application to share data with other applications.
Source:Β developer.android.comΒ  Β 


πŸ”Ή 24. What types of Context do you know?

Answer:

The are mainly two types of context:

  • Application Context: It is an instance that is the singleton and can be accessed in activity via getApplicationContext(). This context is tied to the lifecycle of an application. The application context can be used where you need a context whose lifecycle is separate from the current context or when you are passing a context beyond the scope of activity.

  • Activity Context: This context is tied to the lifecycle of an activity. The activity context should be used when you are passing the context in the scope of an activity or you need the context whose lifecycle is attached to the current context.

Source:Β blog.mindorks.comΒ  Β 


πŸ”Ή 25. Explain Android notification system

Answer:

A notification is a message that Android displays outside your app's UI to provide the user with reminders, communication from other people, or other timely information from your app. Users can tap the notification to open your app or take an action directly from the notification.

Notifications appear to users in different locations and formats, such as an icon in the status bar, a more detailed entry in the notification drawer, as a badge on the app's icon, and on paired wearables automatically. Beginning with Android 5.0, notifications can appear on the lock screen.

Starting in Android 8.0 (API level 26), all notifications must be assigned to a channel or it will not appear. By categorizing notifications into channels, users can disable specific notification channels for your app (instead of disabling all your notifications), and users can control the visual and auditory options for each channelβ€”all from the Android system settings.

Source:Β developer.android.comΒ  Β 


πŸ”Ή 26. What is the most appropriate way to store user settings in Android application?

Answer:

In general SharedPreferences are your best bet for storing preferences, so in general I'd recommend that approach for saving application and user settings.

The only area of concern here is what you're saving. Passwords are always a tricky thing to store, and I'd be particularly wary of storing them as clear text. The Android architecture is such that your application's SharedPreferences are sandboxed to prevent other applications from being able to access the values so there's some security there, but physical access to a phone could potentially allow access to the values.

Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 27. What is 'Context' on Android?

Answer:

The documentation itself provides a rather straightforward explanation: The Context class is an β€œInterface to global information about an application environment".

We may assume a Context is a handle to the system; it provides services like resolving resources, obtaining access to databases and preferences, and so on. An Android app has activities. Context is like a handle to the environment your application is currently running in. The activity object inherits the Context object.

Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 28. Is it possible to implement the model–view–controller pattern in Java for Android?

Answer:

In Android you don't have MVC, but you have the following:

  • You define your user interface in various XML files by resolution, hardware, etc.
  • You define your resources in various XML files by locale, etc.
  • You extend clases like ListActivity, TabActivity and make use of the XML file by inflaters.
  • You can create as many classes as you wish for your business logic.
  • A lot of Utils have been already written for you - DatabaseUtils, Html.
Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 29. What are the differences between ArrayList and ArrayMap?

Answer:

ArrayMap keeps its mappings in an array data structure β€” an integer array of hash codes for each item, and an Object array of the key -> value pairs.

Where ArrayList is a List. Resizable-array implementation of the List interface. Implements all optional list operations, and permits all elements, including null.

Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 30. What is the difference between Handler vs AsyncTask vs Thread?

Answer:

  • The Handler class can be used to register to a thread and provides a simple channel to send data to this thread. A Handler allows you communicate back with the UI thread from other background thread.

  • The AsyncTask class encapsulates the creation of a background process and the synchronization with the main thread. It also supports reporting progress of the running tasks.

  • And a Thread is basically the core element of multithreading which a developer can use with the following disadvantage:

  • Handle synchronization with the main thread if you post back results to the user interface
  • No default for canceling the thread
  • No default thread pooling
  • No default for handling configuration changes in Android
Source:Β stackoverflow.comΒ  Β 


πŸ”Ή 31. What is the difference between Service & Intent Service?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 32. What is DDMS and what can you do with it?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 33. What does LayoutInflater in Android do?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 34. What are Android Annotations and what are they used for?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 35. What is Intent Filter?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 36. Explain String vs StringBuilder vs SpannedString vs SpannableString vs SpannableStringBuilder vs CharSequence

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 37. How would you communicate between two Fragments?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 38. What is ART?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 39. What are retained fragments?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 40. When to use Android's ArrayMap instead of a HashMap?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 41. How can two distinct Android apps interact?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 42. Why fragments, and when to use fragments instead of activities?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 43. What is Explicit Intent?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 44. What is Implicit Intent?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 45. What is the difference between compileSdkVersion and targetSdkVersion?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 46. What is Parcelable in Android?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 47. What is the support library? Why was it introduced?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 48. When to use Android Loaders?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 49. Isn't android's Bundle functionally equivalent with a Map?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 50. What is the difference between invisible and gone for the View visibility status?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 51. How could you pass data between activities without Intent?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 52. How to declare global variables in Android?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 53. What is the difference between onCreate() and onCreateView() lifecycle methods in Fragment?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 54. What is a JobScheduler?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 55. When to use Fragments vs Activities?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 56. What is Handler and what is it used for?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 57. What is the difference between AsyncTask and Thread/Runnable?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 58. Explain key differences between Service and IntentService

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 59. What is the difference between Activity and Context?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 60. What is Android Data Binding?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 61. What are the permission protection levels in Android?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 62. Describe Different Types of Services in Android

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 63. What is the difference between ListView and RecyclerView?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 64. What is the best way to update the screen periodically?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 65. What is an Android PendingIntent?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 66. Android Log.v(), Log.d(), Log.i(), Log.w(), Log.e(). When to use each one?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 67. What are dex files are used for?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 68. What is RenderScript and when should we (really) use it?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 69. Explain how HashMap works

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 70. How would you preserve Activity state during a screen rotation?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 71. What is a LocalBroadcastManager?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 72. What are the differences between onCreate(), onCreateView(), and onActivityCreated() in fragments and what would they each be used for?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 73. What is the actual differences between a activity context and application context?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 74. What is the difference between a Bundle and an Intent?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 75. What is the ViewHolder pattern? Why should we use it?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 76. What is the difference between Adapter and Loader in Android?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 77. How would you support different screen sizes?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 78. Discuss Singletons vs. Application Context for app-global state

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 79. What are some best practices to avoid memory leaks on Android?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 80. What is Broadcast Receiver?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 81. What is the difference between getContext() , getApplicationContext() , getBaseContext() , and "this"?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 82. What are best practices for storing and protecting private API keys in applications?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 83. Explain how ArrayMap works

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 84. When to use SparseArray vs HashMap?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 85. What is AIDL?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 86. How do you handle Bitmaps in Android as it takes too much memory?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 87. What are some differences between ART and Dalvik?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 88. How to avoid reverse engineering of an APK file?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 89. When is it necessary, or better to use a SurfaceView instead of a View?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 90. Is a Dalvik virtual machine instance created for each application?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 91. What is a Sticky Broadcast?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 92. What is the difference between ANR and crash in Android?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 93. What is the Android NDK? How can one use it? Why should one use it?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 94. What is Doze? What about App Standby?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 95. What is the StrictMode?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 96. What are Android Architecture Components?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 97. Can you manually call the Garbage collector?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 98. Why to consider FlatBuffers over JSON?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 99. What are some difference between Parcelable and Serializable?

πŸ‘‰πŸΌ Check all 113 answers


πŸ”Ή 100. What is the difference between Android timer and a Handler to do action every N seconds?

πŸ‘‰πŸΌ Check all 113 answers



Thanks πŸ™Œ for reading and good luck on your next tech interview!
Explore 3800+ dev interview question here πŸ‘‰ Devinterview.io

android-interview-questions's People

Contributors

devinterview-io avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.