Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is difference Between Core Java and advance java

Answers were Sorted based on User's Feedback



what is difference Between Core Java and advance java..

Answer / neelam sharma

core java is a simple to use and learn
if we know how to use java then we can easily learn and understand ad java
2.java is stand alone
but ad java is server application
3. java does not support multithreading
but ad java support multithreading

Is This Answer Correct ?    0 Yes 0 No

what is difference Between Core Java and advance java..

Answer / anil singh

Core java is nothing but J2SE Where as Advanced Java is
nothing but J2EE. Even if you go to any training institution
they teach J2EE as advance JAVA .... ANIL SINGH

Is This Answer Correct ?    0 Yes 0 No

what is difference Between Core Java and advance java..

Answer / prabha

core java is a basic or fundament of java . but advanced java use all the advanced feature of java which make technology much better.

Is This Answer Correct ?    0 Yes 0 No

what is difference Between Core Java and advance java..

Answer / debasish sahoo

See the diffrence is that core java is the fundamental for
java that will be used in any java technology without this
no one can jump on any advance java technology.
Where as advance java is specialisation in some domain , as
someone in networking,web,DCOM,or data base handling.
And more over core java packages are always started with
java.lang..... where as advance java are always with
javax.servlet....

Is This Answer Correct ?    0 Yes 0 No

what is difference Between Core Java and advance java..

Answer / gireesh

CORE JAVA IS BASIC CONCEP WITH OUT KNOWING THE CORE JAVE WE
CAN NOT JUMP INTO THE ADVANCED JAVA IN ADVACED JAVA ALSO WE
ARE USING CORE JAVA COADING THERE IS NO SPECIAL CODING IN
ADV JAVA.IN ADVANCE JAVA THERE IS SOME INBULIT PACKAGES ARE
DEVELOPED IN THAT

Is This Answer Correct ?    0 Yes 0 No

what is difference Between Core Java and advance java..

Answer / gouthami

core java is used for client side applications
where as advanced java is used for server side applications. .

Is This Answer Correct ?    0 Yes 0 No

what is difference Between Core Java and advance java..

Answer / gini

this is only a naming convention.....the standard edition ie j2se is known as core java and the enterprise edition i.e. j2ee is known as the advanced java.So there is nothing wrong if someone uses these terms as well.Although the above mentioned differences like j2ee being for stand-alone and j2ee for enterprise applications(not only web applications)are also correct.

Is This Answer Correct ?    0 Yes 0 No

what is difference Between Core Java and advance java..

Answer / pankaj rautela

according me core-java is fundamental of java language.But Advance java is higher part of java language..
we can take a real life example..
such as: A child who take admission in primary.. and other is college student..
different is primary student only learn..according books(core-java) but college student to use his logic..(advance java).

Note: But both are important to learn java..
ex: such as a coin of 1 rupee, because one part of coin is useless without other part..

Is This Answer Correct ?    0 Yes 0 No

what is difference Between Core Java and advance java..

Answer / bhavesh padmani

According to my knowledge:-

Core Java Is Initially For Learning And Creating Desktop
Application,Core Java Does Not Able For Create Web-Application

Core Java Includes Applet And Swing for Create Application
Swing And Applet Also Known As Hot Java.

Advanced Java Is Generally Used For Create Web-Application
Advanced Java Includes SERVLET And JSP(Java Server Pages)

Is This Answer Correct ?    0 Yes 0 No

what is difference Between Core Java and advance java..

Answer / prathap

core java is basic java core java does not create webpaged
application, advanced java to support java servlet and
netbean its used to create a webpages

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

Where are global variables stored?

0 Answers  


Write an algorithm program in java for the following question.. In a VLSI design techniques,they used rectangles to design circuits. EVery rectangle is to be placed according to x,y coordinates. Check whether or not two rectangles overlap each other. Here overlapping of rectangles is acceptable, if 1) one rectangle intersect with other. 2) one rectangle fully covers other. The time of algorithm should not exceed o(n logn).

0 Answers  


If a class is declared without any access modifiers, where can the class be accessed?

0 Answers  


System.out.println("somestring"); It will create any object or not

5 Answers   CSC,


What is the super void?

0 Answers  


What is the difference between import java.util.date and java .util?

0 Answers  


Features of Java?

4 Answers  


What are measurable parameters?

0 Answers  


What are the two ways to create a thread?

0 Answers  


What is use of arraylist in java?

0 Answers  


Question 7 [8] Consider the following class and answer the questions below it: public class StackWithGuard extends Stack { public StackWithGuard(int size) { super(size); } synchronized public boolean isEmpty() { return super.isEmpty(); } synchronized public boolean isFull() { return super.isFull(); } synchronized public int getSize() { return super.getSize(); } synchronized public void push(Object obj) { try { while (isFull()) { wait(); } } catch (InterruptedException e) {} super.push(obj); COS2144/102 11 notify(); } synchronized public Object pop() { try { while (isEmpty()) { wait(); } } catch (InterruptedException e) {} Object result = super.pop(); notify(); return result; } public static void main(String args[]) { StackWithGuard stack = new StackWithGuard(5); new Producer(stack, 15).start(); new Consumer(stack, 15).start(); } } Note: The Stack class is provided in the Appendix. Note also: The following questions all refer to the pop() method of the StackWithGuard class given above. 7.1 What does the synchronized keyword ensure for this method? (2) 7.2 Why is a while loop used to test whether the stack is empty? In other words, why wouldn't the following if statement be sufficient? if (isEmpty()) { wait(); } (2) 7.3 Why is the result of popping (provided by the inherited pop() method) stored in a temporary variable? In other words, why wouldn't the following statement be sufficient? return super.pop(); (2) 7.4 Why is the while loop placed in a try-catch structure? (2) Appendix The LinkedQueue class: public class LinkedQueue implements Queue { private Node first, last; private int count; public LinkedQueue() { first = last = null; count =0; } public int size() { return count; } public boolean isEmpty() { return (count == 0); 12 } public void enqueue(Object o) { Node node = new Node(); node.element = o; node.next = null; node.prev = last; if (last != null){ last.next = node; } else { last = first = node; } last = node; count++; } public void dequeue() { if ((first!= null) & (first.next!=null)) { first = first.next; first.prev = null; count--; } else { first = last = null; count--; } } public Object front() { return first; } } class Node { Object element; Node next, prev; } The Stack class: public class Stack { protected Object rep[]; protected int top = -1; protected int size = 0; protected int count = 0; public Stack(int size) { if (size > 0) { this.size = size; rep = new Object[size]; } } public boolean isFull() { return (count == size); } public boolean isEmpty() { return (count == 0); } public int getSize() { return size; } public void push(Object e) { if (e != null && !isFull()) { COS2144/102 13 top++; rep[top] = e; count ++; } } public Object pop() { Object result = null; if (!isEmpty()) { result = rep[top]; top--; count--; } return result; } }

0 Answers  


Why is singleton class used?

0 Answers  


Categories