Difference Between java & javax
Answer Posted / vikas jaiswal
Originally, everything that was part of the standard API was part of the java package, whereas everything that was not part of the standard API was released under the package name javax. Hence, packages essential to the API was java, while javax contained the extensions to the API. It can even be said that javax, is just java with an x, which stands for extension.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What event results from the clicking of a button?
How a component can be placed on Windows?
How messaging services are done, before release of JMS?
Where can I ask questions and make suggestions about seam?
Write a program to show synchronization?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
whats is mean by tiles in struts
How database connectivity in XML is achieved?
Explain ioc concept?
Which are the different segments of memory?
What is a tasks priority and how is it used in scheduling?
Why won’t the jvm terminate when I close all the application windows?
what are the advantages of JTA over JTS?
What is Remote Server?
How to implement RMI in Java?