Multithreading, RxJava, Android SDK, Unit Testing, Kotlin basics, Coding - Generate random password from given set of characters.
Android Software Engineer Interview Questions
8,350 android software engineer interview questions shared by candidates
LC style question where you can add/remove people to groups and be able to return the number of groups with x amount of people in them.
Handle I/O process which blocks the UI thread (hint: don't use async task)
/* The problem: I'm working on a collaborative code editor between 2 people. I have the text synchronizing across both screens. However, I have run into the problem illustrated below. Text editors (Time 1) ----------------- --------------- ||cat | |ca|t | | | | | | | | | | | | | | | | | | | | | ----------------- --------------- Person A hits enter then: Text editors (Time 2) ----------------- --------------- | | | |n | ||cat | |cat | | | | | | | | | | | | | | | | | ----------------- --------------- Text editors (Time 2 Expected) ----------------- --------------- | | | | ||cat | |ca|t | | | | | | | | | | | | | | | | | ----------------- --------------- The content updates and the word cat shifts down a line. However, Person B's cursor is left in it's original position instead of moving down a line as expected. Implement the fixCursorRow method don't worry about updating the column. */
develop two screens and connect with a server.
coding challenge were from leetcode
A logical thinking question followed by a javascript question
Could you tell me more about your role?
Given a list of prices for a given stock ordered by date, find the maximum profit you can make by buying and selling stocks.
Why are flaky tests bad in a test suite? Design a system to address/resolve flaky tests in a test suite (system design).
Viewing 6711 - 6720 interview questions