what is the difference b/w design pattern and architecture
Answer Posted / 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 View All Answers
How many types of threads are there in java?
Write a program to show whether a graph is a tree or not using adjacency matrix.
Can two objects have same hashcode?
What is methodological theory?
What class of exceptions are generated by the java run-time system?
Which class is the superclass for every class in java programming?
What is the major difference between linkedlist and arraylist?
Can a class have a static inner class?
What is use of static in java?
What is the significance of continue jump statement? Explain with an example.
Is there any way to find whether software installed in the
system is registered by just providing the .exe file?
I have tried the following code but its just displaying the
directory structure in the registry.
Here the code :
package com.msi.intaller;
import java.util.Iterator;
import ca.beq.util.win32.registry.RegistryKey;
import ca.beq.util.win32.registry.RootKey;
public class RegistryFinder {
public static void main(String... args) throws Exception
{
RegistryKey.initialize(RegistryFinder.class.getResource("jRe
gistryKey.dll").getFile());
RegistryKey key = new RegistryKey(RootKey.HKLM,
"Software\\ODBC");
for (Iterator
Can I declare a class as private?
What is externalizable interface?
Write code to implement bubble sort in java?
Can a class be private?