Skip to main content

Java Training Content

                                              Java Training


Contents : 

Learn Computer Fundamentals

-what is software
Ref : https://www.techopedia.com/definition/4356/software
-what is programming language, Functional Programming, OO programming
Ref : https://www.geeksforgeeks.org/introduction-to-programming-languages/
    : https://www.techopedia.com/definition/24815/programming-language
: https://study.com/academy/lesson/what-is-programming-language-types-examples-quiz.html
: https://www.youtube.com/watch?v=ifo76VyrBYo
-Install JDK and set Java path
-Hello world program
Ref :
-Compilation and interpretation
Compilation : convert source code to executable code -
interpreted : execute instruction line by line.
-Features of Java
- Platform Independent
Ref : https://www.geeksforgeeks.org/java-platform-independent/
Language Fundamentals :
- variables
- data types
- Operators
- Control statements
- Arrays

-OOPs
-Object & class
Ref : https://www.guru99.com/java-oops-class-objects.html
-Constructors
-static & this key words
-Methods - Ref : https://www.geeksforgeeks.org/methods-in-java/
-Access Modifiers
-Encapsulation
-Inheritance
Inheritance(IS-A)
Aggregation(HAS-A)
-Polymorphism
-Abstraction
-Abstract class
-Interface
Ref : http://adnjavainterview.blogspot.com/2015/10/difference-between-loose-coupling-and.html
  https://www.interviewsansar.com/2018/03/24/loose-coupling-and-tight-coupling-in-java/
-Naming conventions
Ref :
Assignment :
-String class internal details
-Sting Buffer
-Sting Builder
-StringTokenizer
-classes :
Object
Wrapper classes
-Exception Handling
Ref :
Assignment :
-Collections

------------------------------------------------------------------------

-Database
Ref :
Assignment :
-JDBC
Ref :
Assignment :
-jdbc-Transaction Management- program practice
Ref :
Assignment :
-Wenservice
-SpringBoot
-Restful webService
-Hibernate
-Relationships
-Cascade
-Lazyloading
-JPA
Ref :
https://hackr.io/blog/best-way-to-learn-java
https://hackr.io/blog/java-cheat-sheet
https://hackr.io/blog/learn-java-as-a-musician-but-faster

Comments

Popular posts from this blog

About Project

                                 About project About project : I am working on xyz project in which we are using xyz technologies This project consists multiple modules. Contribution : I am contributing to so and so modules Roles and responsibilities in Project  Involved in requirement gathering and followed the agile process Explain the roles and responsibilities mentioned in the resume

Web-Service

Web Service :- a service offered by an electronic device to another electronic device, communicating with each other via the  World Wide Web Web services provide a common platform that allows multiple applications built on various programming languages to have the ability to communicate with each other Popular Web Services Protocols are: SOAP: SOAP is known as the Simple Object Access Protocol. SOAP was developed as an intermediate language so that applications built on various programming languages could talk quickly to each other and avoid the extreme development effort. SOAP can only work with XML format. SOAP cannot make use of REST since SOAP is a protocol and REST is an architectural pattern. SOAP was designed with a specification. It includes a WSDL file which has the required information on what the web service does in addition to the location of the web service. REST: REST stands for Representational State Transfer. REST is used to build Web serv...