Second
Second
Index
S. No PAGE NO.
1. Company Profile
2. Introduction To Java
3. The Java Platform
4. Installation Of Java
5. Configuring Variable
6. Write, Compile And Run a Java Program
7. Package
8. Class & Object
9. Inheritance
10.Variable And Method
11.Modifiers And Import Statement
12.Interface
13.IDE
14.History of Java
15.Working With Classes
16.Features of Java
COMPANY PROFILES
Within a short span of two years YCT Academy has become a leading centre for
imparting sophisticated skills for personnel drawn from Industries, Development
organisations. Technical Institutions and the Jobseekers.
Simple and easy to use - Java's creators tried to design it so code could be written
efficiently and easily.
Java does have some drawbacks. Since it has automated garbage collection, it can
tend to use more memory than other similar languages. There are often
implementation differences on different platforms, which have led to Java being
described as a "write once, test everywhere" system. Lastly, since it uses an
abstract "virtual machine", a generic Java program doesn't have access to the
Native API's on a system directly. None of these issues are fatal, but it can mean
that Java isn't an appropriate choice for a particular piece of software.
The Java Platform
One thing that distinguished Java from some other languages is its ability to run
the same compiled code across multiple operating systems.In other languages,
the source code (code that is written by the programmer), is compiled by a
compiler into an executable file. This file is in machine language, and is intended
for a single operating system/processor combination, so the programmer would
have to recompile the program seperately for each new operating
system/processor combination.Java is different in that it does not compile the
code directly into machine language code. Compilation creates bytecode out of
the source code. Bytecode generally looks something like this:
a7 f4 73 5a 1b 92 7d
When the code is run by the user, it is processed by something called the Java
Virtual
➤ The Java virtual machine is written specifically for a specific operating system,
e.g. for Linux a special implementation is required as well as for Windows.
Java programs are compiled by the Java compiler into bytecode. The Java virtual
machine interprets this bytecode and executes the Java program.
Java Runtime Environment vs. Java Development Kit