top of page
Search
MNC Coding Questions for Experienced Interview Android
Coding Questions for Experienced Interview Android 1)Given an unsorted list of repeated elements in an array, Find the element with...

Abhinaw Tripathi
Sep 12, 20162 min read
8 views
0 comments


Android Content Provider Tutorial
A content provider manages a shared set of app data. You can store the data in the file system, an SQLite database, on the web, or any...

Abhinaw Tripathi
Sep 9, 20166 min read
7 views
0 comments
Android Application Best Practice for Performance and its Myths
Best Practices for Performance - When anybody say you .how can you code for best performance .we should understand and keep few things...

Abhinaw Tripathi
Sep 9, 20163 min read
5 views
0 comments
Best approach to download thousands of images over the Network(in Parallel or Queue Worker Threads)
Let me be more specific on it,interviewer asked me this question,if you have to download many images like 1000 thousands.how will you do...

Abhinaw Tripathi
Sep 9, 20162 min read
12 views
0 comments


What is the difference between Started Service and Bound Service in Android?
Very frequent interview question , What is the difference between Started Service and Bound Service? Ans: Let's first understand what is...

Abhinaw Tripathi
Sep 8, 20162 min read
127 views
0 comments
The Stock Span Problem Solution in Java
The Stock Span Problem The stock span problem is a financial problem where we have a series of n daily price quotes for a stock and we...

Abhinaw Tripathi
Aug 26, 20162 min read
26 views
4 comments
Bucket Sort Java Implementation
Bucket Sort Bucket sort is mainly useful when input is uniformly distributed over a range. For example, consider the following problem....

Abhinaw Tripathi
Aug 17, 20162 min read
494 views
0 comments
Shell Sort Algorithm implementation in java
Shell sort, also known as Shell sort or Shell's method, is an in-place comparison sort. It can be seen as either a generalization of...

Abhinaw Tripathi
Aug 17, 20162 min read
5 views
0 comments
Comb Sort Algo in Java
The basic idea is to eliminate turtles, or small values near the end of the list, since in a bubble sort these slow the sorting down...

Abhinaw Tripathi
Aug 16, 20164 min read
1 view
0 comments


Pigeonhole Sort Algorithm Implementation in Java
Pigeonhole Sort Algorithm- Pigeonhole sorting is a sorting algorithm that is suitable for sorting lists of elements where the number of...

Abhinaw Tripathi
Aug 16, 20162 min read
262 views
0 comments


Beacons-Android Integration Code Example continue....
For this you need to understand few major things 1)Estimote Beacon Library 2)App Id and Token Id 3)Need to give reference the library...

Abhinaw Tripathi
Aug 11, 20163 min read
53 views
0 comments
Beacons Android Integration Tutorials
What is Beacons? Well, Beacons are a solution. Beacons are a low-cost piece of hardware — small enough to attach to a wall or counter...

Abhinaw Tripathi
Aug 11, 20165 min read
1 view
0 comments
Applications of Depth First Search and Breadth First Traversal
Applications of Depth First Search Depth-first search (DFS) is an algorithm (or technique) for traversing a graph. Following are the...

Abhinaw Tripathi
Jun 28, 20163 min read
27 views
0 comments


Breadth First Search Java
Breadth First Search algorithm(BFS) traverses a graph in a breadth wards motion and uses a queue to remember to get the next vertex to...

Abhinaw Tripathi
Jun 28, 20162 min read
6 views
0 comments


Graph and its representations in Java
A graph is a pictorial representation of a set of objects where some pairs of objects are connected by links. The interconnected objects...

Abhinaw Tripathi
Jun 28, 20163 min read
2 views
0 comments
Android N API Review
Along with new features and capabilities, Android N includes a variety of system and API behavior changes.Android N is still in active...

Abhinaw Tripathi
Jun 28, 20169 min read
3 views
0 comments
Methods in Java
Methods in Java A method represents a group of statements that performs a task.Methods has two parts. Method Header or Method Prototype...

Abhinaw Tripathi
Jun 27, 20164 min read
5 views
0 comments
Relationship Between Objects Java
Relationship Between Objects It is possible to create objects for different classes and establish relationship between them.When the...

Abhinaw Tripathi
Jun 27, 20164 min read
4 views
0 comments
Inheritance Java
We can acquire all the members of a class and use them in another class by relating the objects of two class .This is possible by...

Abhinaw Tripathi
Jun 27, 20164 min read
4 views
0 comments
Polymorphism Java
Polymorphism : In java, a variable ,an object or a method can exist in different forms,thus performing various task depending on the...

Abhinaw Tripathi
Jun 24, 20165 min read
4 views
0 comments
bottom of page