WHAT IS DIFFERENT BETWEEN CORE JAVA AND ADVANCED JAVA?
Answer Posted / mainuddin
Core java represents the java standard edition, It will
define all the aspects of oop like
polymorphism,inheritance,classes and all.The programs need
JVM to compile..
Advanced java is J2EE specification, this specification
only used for developing secure,scalable web
applications.It has certain objects like
session,request,servlet which are defined in the web
container .request is sent to web container and processed
finally response is sent back to the user..
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
What does trim stand for?
Explain window.onload and ondocumentready?
what is the difference between window & document in javascript?
Javascript, Pass by Value or Pass by Reference?
What and where are the best javascript resources on the web?
What is primitive data type in javascript?
What is enum size?
What is nodetype in javascript?
List few advantages of using javascript?
How to write comment in JavaScript?
How to convert json object to string?
How can a page be forced to load another page in javascript?
What output will this program produce System.out.println(x+"+"+y+"="+(x+));
How to setting a cookie with the contents of a textbox?
What is output of “20” + 20 + 20 and “20” + ( 20 + 20)? In javascript?