answersLogoWhite

0

Which one is more advanced core java or java?

Updated: 8/16/2019
User Avatar

Wiki User

15y ago

Best Answer

The Core Java technologies and application programming interfaces (APIs) are the foundation of the Java Platform, Standard Edition (Java SE). They are used in all classes of Java programming, from desktop applications to Java EE applications.

Well What exactly you mean by Java?

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which one is more advanced core java or java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the Difference between core java and java?

Core Java has to do with the basic package of Java objects that are typically used for general desktop applications. These objects come in the 'Standard Edition' of JavaAdvanced Java could actually refer to any advanced topic having to do with Java programming-- and there are many.The other packages that you will typically see being referred to in opposition to Core Java are Enterprise Java and Micro Edition. Enterprise Java is largely business and network oriented, and Micro Edition is what is typically used for hand-held devices.The difference 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, such as networking, web, DCOM or database handling.And more over core java packages are always started with "java"e.g.java.lang.....where as advance java are always with "javax"e.g.javax.servlet....Core Java uses the console for Input and output i.e - DOS PromptAdvanced Java is more on the GUI side with a Window,Buttons,Frames,TitleBar,etc.and is used to create more client-server based applications and applets.


What is gini in Java language?

gini is the one type of extension of the java. gini is the advanced and advanced version of the java


What is the fees of java course in NIIT?

for core java u'l be charged 7000... but some one told me it around 13860/-


What do you mean by java?

Java is an object-oriented programming language which is generally designed either to be compiled to native (machine) code or to be interpreted from source code at runtime. Java is intended to be compiled to a bytecode, which is then run (generally using JIT compilation) by a Java Virtual Machine. IT DESK training course is designed in such a way that it provides a proper understanding of Java Programming along with different features like file handling, string handling, threading, etc. Java is platform-independent and is used to develop Console Applications, Desktop Applications, and Web Applications. Java also supports multithreading which helps it to perform multiple tasks at the same time. IT DESK promotes the students to do Internships and all the Training are given on the latest version of Java. IT DESK certificate is industry-recognized and lets you find the best job opportunities in the field of programming.


Where would one find more information on the Java Virtual Machine?

One could find more information about the Java Virtual Machine online on various websites such as 'Wikipedia', 'Java-Virtual-Machine' and of course the website 'Java'.


Which one is more advanced oracle or java?

They are not comparable to each other. Oracle is a company/organization, or a database (developed by the organization with the same name). Java is a general purpose programming language. You may write a Java program not using Oracle database as the persistence. And you may use Oracle Database without Java programming language. Interestingly though, Oracle, the company, does provide both Oracle and Java Certification programs.


How do you implimenting multilevel inheritance in java?

In java we can implement more than one interfaces for a single class but we can't extend a class to more than one super class so ,java indirectly supports multiple inheritance.


What are job opportunities after learning JAVA?

Lots of companies need computer programmers, and in many cases, they need people who know Java. Note that a one-semester course in Java may not be enough; you may need to learn more advanced Java, depending on the job.You can search job sites, such as upwork.com (a site for freelancers), for the keyword "Java", to get a better idea of available jobs.


Where can one find more information about JAVA xml?

One can find more information JAVA xml from websites like MK Yong, Vogella, Developer Fusion, NTU, Seas, Tutorials Point, Java World, Cafe Conleche and JCP.


Where can one learn more about Java concurrency in practice?

One may learn about Java concurrency in the book 'Java concurrency in practice' which can be purchased from various online retailers. Additionally, Java concurrency is often discussed in various formal training classes.


Can a .java file contain more than one java classes?

Yes, it can. However, there can only be one public class per .java file, as public classes must have the same name as the source file.


What are the alternatives to inheritence in java?

Java does not support multiple inheritance; a subclass cannot have more than one parent. Java compensates for this with interfaces. A class can implement multiple interfaces, but can only extend one class.