what is the difference between java and j2ee... is that can
i work j2ee on net beans IDE 6.0
Answers were Sorted based on User's Feedback
Answer / kuldeep raaj sharma
There is no difference btween Java and J2EE. J2EE is Java 2
Enterprise Edition (Useful to make Enterprice Application
with RMI,NETWORKING,JDBC,JSP,SERVLET,APPLET,GUI,etc.)
Yes! It is posible to Use not only J2EE but J2SE(Standard
Edition or Core Java) J2ME (Java 2 Micro Edition for
Programming for Micro JVM (KVM) Development for Devices
such as PDAs, Mobiles, etc)
kuldeepraaj@gmail.com
kuldeepraaj@ymail.com
kuldeepraaj@timescalling.com
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / mkj
Java for core application programming , and j2ee to
entrprice application like web module,EJB,web servises etc..
netbean tool supports for all java ,web ,web service
and plugin and others .. developents
| Is This Answer Correct ? | 7 Yes | 0 No |
I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }
How many boolean functions are there?
What is meant by final class?
What is the specification of ?CODEBASE? in an applet?
What is string made of?
What does this() represent, and how is it used in Java?
What is strings in java?
what is the use of abstract class?
3 Answers Amdocs, Atos Origin, Invictus,
What is the main method java?
What is void in java?
What are java threads?
What is Gang of four design patterns