What are types of Java applications?
Answers were Sorted based on User's Feedback
Answer / yugveer jangir
J2SE-1.Stand alone application
2.Client-server application
J2EE- 1.Web-application application
2.Enterprice and Distributed application
3.Interoparable application
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vinay sharma
Java has two types of Applications that is:=
1. Standalone Application
2. Internet Application
->Web supportive application(HTML,Applet)
->Web application(Servlet,JSP)
3. Database application(SQL,MySQL)
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / premlata
Basically Java Applications can be 2 types
1. CUI (Character User Interface)
2. GUI (Graphical User Interface)
Is This Answer Correct ? | 7 Yes | 12 No |
I have one Shopping cart application, i that i have selected some items, while clicking submit button by mistake i have clicked twice or trice, that time items are selected twice or trice. Actually i want only one copy of items but its selected twice or trice. So how can we avoid this problem?
What are data structures in java?
What is yielding and sleeping? how they different?
Why is java multithreaded?
What is executor memory?
Where is stringbuffer stored?
what are Checked & Unchecked exceptions ?
What is update method called?
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(); } }
what is the purpose of using rmisecuritymanager in rmi?
What are the advantages of encapsulation in java?
How do you square a number in java?