Handle a bunch of outgoing network requests for typeahead
Senior Android Software Engineer Interview Questions
1,907 senior android software engineer interview questions shared by candidates
activity life cycle, service, broadcast receiver, list view and recycler view
What is your big achievement in development?
1. First round had question-related to the android experience and system 2. Second round is technical with the algorithms
basic questions and some silly questions that as a developer we dont need to know about that.
Question was asked about my background experience and why I was interested in this position
[Coding] Islands count. Given a 5x5 matrix where 1 represents a land and 0 represent a water. Write a function that will count the islands in the given matrix. What's an island? If 1 has an adjacent 1 in any direction (N, NE, E, SE, S, SW, W, NW) it forms an island. -- [code javascript] --- var m = [ [1, 1, 0, 0, 0], [0, 1, 0, 0, 1], [1, 0, 0, 1, 1], [0, 0, 0, 0, 0], [1, 0, 1, 0, 1] ]; function islandsCount(map) { // your code here return 0; } console.log("Number of islands: ", islandsCount(m)); -- [end code javascript] --- Expected count is 5.
Difference between Hashmap and Hashtable?
about my current salary and my expected salary
how is life and how its going
Viewing 1361 - 1370 interview questions