what is the difference b/w design pattern and architecture

Answers were Sorted based on User's Feedback



what is the difference b/w design pattern and architecture..

Answer / srinivasa

Design pattern is part of the architecture to solve the
design problem.

Is This Answer Correct ?    2 Yes 1 No

what is the difference b/w design pattern and architecture..

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

what is the difference b/w design pattern and architecture..

Answer / john

There is no difference

Is This Answer Correct ?    5 Yes 5 No

what is the difference b/w design pattern and architecture..

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

Post New Answer

More Core Java Interview Questions

What is bytecode in java ?

0 Answers  


Can you explain the difference b/n abtract and interface with a good example,?In what cases we have use abtract and what case interface?

4 Answers   Satyam,


What is the use of Getters and Setters method ?

4 Answers  


When can we say that threads are not lightweight process in java?

0 Answers  


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  






Difference between an argument and a parameter?

10 Answers   Accounting, HCL, IBM, Quinnox,


Can we have multiple classes in single file ?

0 Answers  


What are Transient and Volatile Modifiers?

3 Answers   SAP Labs, TUP Manila,


How to prevent a field from serialization ?

2 Answers  


What is the name of the java compiler?

0 Answers  


what is hashmap& hashtable with example?

1 Answers   CTS,


How does java enable high performance?

0 Answers  


Categories