top of page
Search
Tutorial on Prototype Design Pattern
As the name suggests Prototype means making a clone. and Cloning is the operation of replicating an object.The cloned object the copy is...

Abhinaw Tripathi
May 26, 20162 min read
3 views
0 comments
Tutorial on Singleton Design Pattern
This design pattern is used when only one instance of an object is needed throughout the lifetime of an application.The singleton class...
Abhinav Tripathi
May 25, 20162 min read
3 views
0 comments
Very Common Problem on Matrix,if an element in an MXN matrix is 0,its entire row and column are set
Solution: public void setZero(int[][] matrix) { boolean[] row= new boolean[matrix.length]; boolean[] row= new...

Abhinaw Tripathi
May 25, 20161 min read
4 views
0 comments
Builder Design Pattern
As the name suggest it self that builds complex objects from simple one step by step and the object creation process should be generic So...
Abhinav Tripathi
May 24, 20161 min read
5 views
0 comments
Abstract Factory Design Pattern
Abstract Factory is a factory object that returns one of several factories.Modularization is a big issue in today's...
Abhinav
May 24, 20161 min read
1 view
0 comments
Creational Design Patterns
This design pattern is all about the class instantiation.These design patterns tries to create objects in a manner suitable to the...
Abhinav Tripathi
May 24, 20161 min read
7 views
0 comments
Lets talk about Software Design-Patterns
What are Design Patterns? Design Pattern is a used and tested solution for a know problem.In simple words you can say a general reusable...
Abhinav Tripathi
May 24, 20162 min read
1 view
0 comments
Which Design Pattern should be used instead of using Traditional Constructor and why?
Replace Constructor with Factory Method Pattern.Why lets take a case Suppose you have class like class Employee { Employee(int type) {...
Abhinav Tripathi
May 23, 20161 min read
2 views
0 comments
Android Interview Questions for 2-5 yrs experienced
Well its not in order and not complete.will keep adding but for now i have few.... 1)How do you find memory leaks in android application?...
Abhinaw
May 18, 20162 min read
6 views
0 comments
bottom of page