How do you handle obfuscation?
Android Software Developer Interview Questions
598 android software developer interview questions shared by candidates
In CoderPad, write a unit test with parameterized arguments.
What do you like and dislike about Android or iOS?
/* 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. */
coding challenge were from leetcode
Given a list of prices for a given stock ordered by date, find the maximum profit you can make by buying and selling stocks.
Design , Data structures, algorithms
Was asked to write a code to count the number of set bits in a 32 bit interger
What are definition and declaration in C? What is output of certain codes print array elements print a string pointer letter by letter
How many ways to climb stairs if you can go 1 or 2 steps at a time?
Viewing 481 - 490 interview questions