During 12 May 2010 To 18 June 2010: Session: 2010-2011
During 12 May 2010 To 18 June 2010: Session: 2010-2011
Presentation on Training AT
Road Ahead Techonolgy Pvt. Ltd.
During
12th May 2010 to 18th June 2010
Session: 2010-2011
By:
Bijeet
Hazarika
VISION:
“Road Ahead team firmly believes in having a vision and focus in applying
the expertise and experience gathered in the past years.”
We believe that working to realize our vision will enable us to be different
from other IT companies cluttering the business space, achieving job
satisfaction and attracting the best talent to our organization.
SISTER CONCERN:
• Foursep Technologies
• Road Ahead Infotech
12/08/2021 3
•FOURSEP TECHNOLOGIES:
Foursep Technologies was established in 2007 in Jaipur by Mr. Abhishek
Jain. The company was set up as a sister concern of Road Ahead
Technologies (I) Pvt. Ltd, Jaipur which provides technology solutions to
Young professionals & IT students of Rajasthan.
The Company provides software products and IT services for a variety of
industry verticals including Insurance, Banking, Government,
Manufacturing and Retail. These solutions and
12/08/2021 4
ACHIEVEMENTS:
• Their recent achievements is tie-up with UGC approved State
University.
• They are providing an opportunity of doing Live projects in
various renound companies of IT sector.
• In a very short span, they have trained more than 5000 IT
professionals from almost every part of Rajasthan.
MANAGEMENT TEAM:
Mr. Abhishek Jain is the Director of Road Ahead Technologies (I)
Pvt. Ltd. and all its branch officers. Mr. Jain is a young IT Engineer
with over 7 years of experience in Computer Software & Training
Industry. Mr. Jain primarily handles the Technical & Training
portfolios of Road Ahead Technologies (I) Pvt. Ltd.
12/08/2021 5
Why Java?
• It’s the current “hot” language
• It’s almost entirely object-oriented
• It has a vast library of predefined objects
and operations
• It’s more platform independent
– this makes it great for Web programming
• It’s more secure
• It isn’t C++
12/08/2021 6
Applets, Servlets and
Applications
• An applet is designed to be embedded in
a Web page, and run by a browser
• Applets run in a sandbox with numerous
restrictions; for example, they can’t read
files and then use the network
• A servlet is designed to be run by a web
server
• An application is a conventional program
12/08/2021 7
COMPANY PROFILE
•About the Company
•Vision
•Sister Concern
•Achievements
•Management Team
12/08/2021 8
TECHNOLOGY
Java is a programming language originally developed by James
Gosling in 1991 at Sun Microsystems(which is now a subsidiary of
Oracle Corporation) and released in 1995 as a core component of
Sun Microsystems' Java platform. The language derives much of
its syntax from C and C++ but has a simpler object model and
fewer low-level facilities. Java applications are typically compiled
to bytecode (class file) that can run on any Java Virtual Machine
(JVM) regardless of computer architecture. Java is general-
purpose, concurrent, class-based, and object-oriented, and is
specifically designed to have as few implementation
dependencies as possible. It is intended to let application
developers "write once, run anywhere". Java is considered by
many as one of the
12/08/2021 9
JAVA TECHNOLOGY IS :
• A programming language
• A development environment
• An application environment
• A deployment environment
12/08/2021 10
Classification of JAVA Language
JAVA SE (Standard Edition of Java)
JAVA FX
JAVA CARDS
12/08/2021 11
JAVA SE (Standard Edition of Java)
Core Java is divided in two parts:-
1. Console Programming
2. Window Programming
Version New Language features
1.0 The language itself
1.1 Inner classes
1.2 Swing
1.3 Runtime system functionality
1.4 Assertion
1.5 Generic classes, “for each” loop, varags, autoboxing,
metadata, enumerations, static import
6.0 New classes in collection framework, improved security,
Desktop class, systemTray and Traylcon class, Dynamic
compilation
12/08/2021 12
Building Standalone JAVA Programs (on UNIX)
import java.awt.*;
import java.util.*;
public class SomethingOrOther {
// object definitions go here
...
}
12/08/2021 31