what is the difference b/w design pattern and architecture
Answers were Sorted based on User's Feedback
Answer / srinivasa
Design pattern is part of the architecture to solve the
design problem.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / rai
Architeture is a plan what we have to do for a perticuler
problem whereas pattern is nothing ut a solution for that
pertuler probelm and pattern is designed based on some
rules.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / devarathnam c,kotagudibanda(po
Hi...
Architecture is nothing but plan for a specfic problem.
Design pattern is a solution for a given problem.I think in
java perspective "class" is a plan(blue print) and "object"
is a solution.
| Is This Answer Correct ? | 1 Yes | 7 No |
How does thread synchronization occurs inside a monitor? What levels of synchronization can you apply?
In the below example, what will be the output?
What is high level language in computer?
Can java object be locked down for exclusive use by a given thread?
What is the difference between a public and a non-public class?
What is method in research paper?
What is a java list?
What one should take care of, while serializing the object?
What data type is true or false?
What is meant by data hiding/encapsulation?
when you will synchronize a piece of your code? : Java thread
Map map = new HashMap(2); map.add(“1”,”one”); map.add(“2”,”two”); map.add(“3”,”three”); What will happen at this line?