PPT1 - Template Sample

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 19

 

INDUSTRIAL TRAINING 
ON
     JAVA  CORE  PROGRAMMING  LANGUAGE

Presented By:   SUBMITTED TO :


NAME = Pranav Soni  Mr. Sunil Sharma
Industrial Training Coordinator 
RTU ROLL NO. = 21EJCCS172 (CSE Department)
BRANCH/SEMESTER/SECTION = Computer Science Dr. Sanjay Gaur
                                  Engineering  / Third Semester / C-2  (HOD CSE Department)
Contents
VISION AND MISSION OF INSTITUTE

Vision of the Institute


To become a renowned centre of higher learning, and work towards academic,
professional, cultural and social enrichment of the lives of individuals and communities.

Mission of the Institute


• To Focus on research and spirit of innovation that will drive academic orientation
and pursuit at JECRC University.
• To Identify, based on informed perception of Indian, regional and global needs,
areas of focus and specialization on which the University can concentrate.
• To Undertake collaborative projects that offer opportunities for long-term
interaction between academia and industry.
• To Develop human potential to its fullest extent so that intellectually capable and
imaginatively gifted leaders can emerge in a range of professions.
Contents
VISION AND MISSION OF DEPARTMENT

Vision of the Department


To become renowned Centre of excellence in computer science and engineering and
make competent engineers & professionals with high ethical values prepared for
lifelong learning.

Mission of the Department


• M1- To impart outcome based education for emerging technologies in the field of
computer science and engineering.
• M2 - To provide opportunities for interaction between academia and industry.
• M3 - To provide platform for lifelong learning by accepting the change in
technologies
• M4 - To develop aptitude of fulfilling social responsibilities.
Contents
COURSE OUTCOMES (COs)
CO1: Generate the report based on the Projects carried out for
demonstrating the ability to apply the knowledge of engineering field
during training

CO2: Demonstrate Competency in relevant engineering fields


through problem identification, formulation and solution
CONTENTS

Industrial Training Title

Introduction

Background(How your work is different from state of art)

Tools/Technology

Work Plan

References

Project
               
               
              Title  =

             Java  
      Programming 
          Language
    Introduction To
    Java Programming  Language  

                                             JAVA was developed by
James Gosling at Sun Microsystems in the
year 1995, later acquired by Oracle Corporation. It is
a simple programming language. Java makes writing,
compiling, and debugging programming easy. It
helps to create reusable code and modular programs.
JAVA  is a class-based, object-oriented programming
language and is designed to have as few
implementation dependencies as possible. A general-
purpose programming language made for developers
to write ones run everywhere  that is compiled Java
code can run on all platforms that support Java. Java
applications are compiled to byte code that     can run
on any Java Virtual Machine. The syntax of Java is
similar to c/c++.

                                                            
    Introduction To
    Java  Programming  Language 
  Java is a popular programming language, created in 1995.
It is owned by Oracle, and more than 3 billion devices run Java.
It is used for:

Mobile applications (specially Android apps)

Desktop applications

Web applications

Web servers and application servers

Games

Database connection

And much, much more!
                                                        
    History Of 
    Java  Programming  Language 

Java is an object-oriented language that was developed as a project by James


Gosling and his team, Sun Microsystems, in the year 1991. It was initially
designed as a problem-solving platform  which was later accepted
worldwide due to it’s high efficiency. What is a platform you may
wonder?. It is basically an environment where a software is implemented.
                                                         
This project was initially named oak. But due to patent issues it was dropped
and replace by JAVA which is a breed of coffee. Hence we can see a
steaming cup of coffee in it’s logo.
It is now under the ownership of Oracle.
                                                        
    Why We Use Java?
     Java works on different platforms (Windows, Mac, Linux, etc.)

It is one of the most popular programming language in the world

It has a large demand in the current job market

It is easy to learn and simple to use

It is open-source and free

It is secure, fast and powerful

It has a huge community support (tens of millions of developers)

Java is an object oriented language which gives a clear structure to programs and
allows code to be reused, lowering development costs

As Java is close to C++ and C#, it makes it easy for programmers to switch to Java
or vice versa
                                                                          
Tools For Java To Implementing Java Life-Cycle
How Java Works / Work Plan =  

• In Java Programming Language all source code is written in a Text file with


a .java extension.
• Those source files ( .java ) are then compiled into .class files by the javac
compiler.
• .class files contain the bytecode which is nothing but the Machine Language of
the Java Virtual Machine.
• The java launcher tool then runs your application with an instance of the Java
Virtual Machine.
• Java works by first compiling the source code into bytecode. Then, the
bytecode can be compiled into machine code with the Java Virtual Machine
(JVM). Java’s bytecode can run on any device with the JVM which is why
Java is known as a “write once, run anywhere” language.
Advantages Of Java = 

                                                        
  Java  Variables  

Variables are containers for storing data values.


In Java, there are different types of variables, for example:

String - stores text, such as "Hello". String values are surrounded by double quotes

int - stores integers (whole numbers), without decimals, such as 123 or -123

float - stores floating point numbers, with decimals, such as 19.99 or -19.99

char - stores single characters, such as 'a' or 'B'. Char values are surrounded by single quotes

boolean - stores values with two states: true or false

Example = 

 int myNum = 5;
float myFloatNum = 5.99f;
char myLetter = 'D';
boolean myBool = true;
String myText = "Hello";
   
Java Operators
  

Operators are used to perform operations on variables and values.


     Java divides the operators into the following groups:

 Arithmetic operators

 Assignment operators

 Comparison operators

 Logical operators

 Bitwise operators
  
  
Java Syntax

Main.java

public class Main 


{
  public static void
main(String[] args) 
{
 System.out.println("Hello");
}
}

You might also like