Git Product home page Git Product logo

dmk07 / java Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 11.49 MB

Professionals and students who want to get themselves certified in Core Java or JDBC can refer to this syllabus for learning and enhancing their knowledge of Java during their academic sessions. Here is more detailed information about core java syllabus:

License: Apache License 2.0

Java 100.00%
constructor data final java methods oops-in-java variables

java's Introduction

Core Java Syllabus

Professionals and students who want to get themselves certified in Core Java or JDBC can refer to this syllabus for learning and enhancing their knowledge of Java during their academic sessions. Here is more detailed information about core java syllabus:

Basic of Java

  • What is Java?
  • History and Features of Java
  • C++ vs. Java
  • Hello Java Program
  • Internal How to set the path?
  • JDK, JRE, and JVM (Java Virtual Machine)
  • JVM Memory Management
  • Internal Details of JVM
  • Unicode System, Operators, Keywords, and Control Statements like if-else, switch, for loop, and while loop

Class, Objects, and Types of Classes

  • Naming conventions of Java
  • Classes, objects, and features
  • Object declaration and initialization
  • The life cycle of an object
  • Anonymous object in Java

Packages in Java

  • How to declare a package in a company project
  • Package naming conventions
  • Sub packages
  • Types of packages such as user-defined packages, built-in packages
  • Importing packages in Java

Data Types in Java

  • Data types in Java
  • Primitive data types
  • Non-primitive data types
  • Memory allocation of primitive and non-primitive data types

Variables, Constraints, and Literals

  • Variable declaration and initialization
  • Naming convention
  • Types of variables such as local variables, instance variables, and static variables
  • Scope and memory allocation of variables

Methods in Java

  • Methods in Java
  • Use of method in Java
  • Method declaration, the method signature
  • Types of methods in Java: predefined method, user-defined methods: instance method, static method
  • Calling of method
  • Java main method
  • Return type in Java

Constructor in Java

  • What is Constructor in Java?
  • Types of Constructors: Default and parameterized constructors
  • Java constructor overloading
  • Constructor chaining in java
  • Copy constructor in Java

Modifiers in Java

  • What is an Access modifier ad non-access modifier in Java?
  • Types of access modifiers like private, default, protected, and public
  • Types of non-access modifiers like abstract, final, native, static, Strictfp, synchronized modifier, transient, volatile.

Static Keyword

  • What is Static Keyword
  • Static variable
  • Static method
  • Static block, instance block
  • Static Nested Class in Java
  • Difference between static variable and instance variable, static method, and instance method, static block, and instance block

Final Keyword

  • Final keyword
  • Final variable
  • Final method
  • Final class

Inner Class in Java

  • What is Inner Class in Java?
  • Types of Inner class in Java

Super and this keyword

  • Super Keyword
  • Calling of superclass instance variable
  • Superclass constructor
  • Superclass method

Encapsulation

  • Encapsulation in Java
  • How to achieve encapsulation
  • Data Hiding
  • Tightly encapsulated class
  • Getter and setter method in Java
  • Naming convention of getter and setter method

Inheritance

  • Inheritance in Java
  • Is-A-Relationship
  • Aggregation and Composition
  • Types of Inheritance

Polymorphism

  • Polymorphism in Java
  • Types of Polymorphism
  • Static and Dynamic Binding
  • Method overloading]
  • Method Overriding

Abstraction

  • Abstraction in Java
  • Abstract Class
  • Abstract method
  • Interface in Java
  • Nested interface, rules, and example programs

There are 31 chapters in this curriculum. The following is the title of the chapter, along with a brief description:

1. Basics of Java

The first chapter covers the fundamentals of the Java programming language, such as

  • What is Java?
  • History and Features of Java
  • C++ vs Java
  • Hello Java Program
  • internal How to set the path?
  • JDK, JRE, and JVM (Java Virtual Machine)
  • JVM Memory Management
  • Internal details of JVM
  • Unicode System, Operators, Keywords, and Control Statements like if-else, switch, For loop, while loop, etc.

2. Class, Object, and Types of classes

The most fundamental and core ideas of Java are covered in Chapter 2. They are as follows:

  • Naming convention of Java
  • Classes, Objects, and Features. It explains how to declare a class, how to create an object in Java.
  • Object declaration and initialization
  • Life cycle of an object
  • Anonymous object in Java

3. Packages in Java

Packages in Java are covered in Chapter 3. The following topics will be covered in this chapter.

  • How to declare package in a company project
  • Package naming conventions
  • Sub packages
  • Types of packages such as user-defined packages, built-in packages
  • Importing packages in Java

4. Data types in Java

The following Java concepts are covered in this chapter.

  • Data types in Java
  • Primitive data types
  • Non-primitive data types
  • Memory allocation of primitive and non-primitive data types, etc. 

5. Variables, Constants, and Literals

Variables, constants, and literals are the three topics covered in Chapter 5. This chapter will cover the following subtopics.

  • Variable declaration & initialization
  • Naming convention
  • Types of variables such as local variables, instance variables, and static variables
  • Scope and memory allocation of variables.

6. Methods in Java

  • Methods in Java
  • Use of method in Java
  • Method declaration, method signature
  • Types of methods in Java: predefined method, user-defined methods: instance method, static method
  • Calling of method
  • Java main method
  • Return type in Java.

7. Constructor in Java

You will learn about the following things in this chapter:

  • What is Constructor in Java?
  • Types of constructors: Default and Parameterized constructors
  • Java constructor overloading
  • Constructor chaining in java
  • Copy constructor in Java

8. Modifiers in Java

This chapter covers Topics such as

  • In Java, what is the difference between an access modifier and a non-access modifier?
  • Private, default, protected, and public are examples of access modifiers.
  • Types of Non-access modifiers like abstract, final, native, static, Strictfp, synchronized modifier, transient, volatile.

9. Static Keyword

The following significant Topics are covered in this chapter.

  • What is Static keyword?
  • Static variable
  • Static method
  • Static block, Instance block
  • Static Nested Class in Java
  • Difference between static variable and instance variable, static method and instance method, static block, and instance block.

10. Final Keyword

The following significant Topics are covered in this chapter.

  • Final keyword
  • Final variable
  • Final method
  • Final class.

11. Inner Class in Java

The following significant Topics are covered in this chapter.

  • What is Inner class in Java?, Properties of the inner class, Instantiating inner class.
  • Types of inner class in Java: Normal inner class, Method local inner class, Anonymous inner class, and Static nested class.

12. Super and this Keyword

The following significant Topics are covered in this chapter.

  • Super keyword
  • Calling of superclass instance variable
  • Superclass constructor
  • Superclass method.
  • The second section deals with
  • This keyword
  • Calling of current class constructor, and method.

13. OOPs concepts

The most essential topic in this chapter is the object-oriented programming system (OOPs). You will learn about class, object, encapsulation, inheritance, polymorphism, and abstraction as part of the OOPs paradigm. For the objectives of the interview, all of the issues are quite crucial.

14. Encapsulation

The following significant Topics are covered in this chapter.

  • Encapsulation in Java
  • How to achieve Encapsulation
  • Data hiding
  • Tightly encapsulated class
  • Getter and setter method in Java
  • Naming convention of getter and setter method

15. Inheritance

The following significant Topics are covered in this chapter.

  • Inheritance in Java
  • Is-A Relationship
  • Aggregation and Composition(HAS-A)
  • Types of inheritance:  Single level, Multilevel, Hierarchical, Multiple, and Hybrid inheritance.

16. Polymorphism

The following significant Topics are covered in this chapter.

  • Polymorphism in Java,
  • Types of polymorphism: Compile-time polymorphism and Run-time polymorphism
  • Static and Dynamic Binding
  • Method overloading
  • Method overriding
  • Rules of method overloading and method overriding, various example programs related to rules of overloading and overriding.
  • Covariant Return type

17. Abstraction

The following significant Topics are covered in this chapter.

  • Abstraction in Java
  • Abstract class
  • Abstract method
  • Interface in Java
  • Nested interface, rules, and example programs.

18. Garbage Collection

In this chapter, you’ll learn about garbage collection in Java.

19. Input-Output Stream

The following significant Topics are covered in this chapter.

  • FileOutputStream, FileInputStream
  • BufferedOutputStream, BufferedInputStream
  • SequenceInputStream
  • ByteArrayOutputStream, ByteArrayInputStream
  • DataOutputStream, DataInputStream
  • Java FilterOutputStream, Java FilterInputStream
  • Java ObjectStream, Java ObjectStreamField
  • Console
  • FilePermissionWriter, Reader, FileWriter, FileReader
  • BufferedWriter, BufferedReader
  • CharArrayReader, CharArrayWriter
  • PrintStream, PrintWriter
  • OutputStreamWriter, InputStreamReader
  • PushbackInputStream, PushbackReader
  • StringWriter, StringReader
  • PipedWriter, PipedReader
  • FilterWriter, FilterReader, File FileDescriptor, RandomAccessFile, and  java.util.Scanner.

20. Collections Framework

The following significant Topics are covered in this chapter.

  • What is Collections Framework?
  • List, Set, SortedSet, Queue, Deque, Map, Iterator, ListIterator, and Enumeration.
  • ArrayList, LinkedList, HashSet, LinkedHashSet, TreeSet, ArrayDeque, PriorityDeque, EnumSet, AbstractCollection, AbstractList, AbstractQueue, AbstractSet, and AbstractSequentialList.
  • Map, Map Entry, SortedMap, and NavigableMap
  • HashMap, LinkedHashMap, TreeMap, IdentityHashMap, WeakHashMap, and EnumMap.
  • Comparator, RandomAccess interfaces as well as Observable class.

21. Serialization

Serialization, Deserialization, and the Java temporary keyword are all covered in this chapter.

22. Exception Handling in Java

This chapter is extremely necessary for any Java technical exam or interview. This chapter will introduce you to

  • Exception Handling in Java
  • Try-catch block
  • Multiple Catch Block
  • Nested try block
  • Finally block
  • Throw Keyword
  • Throws Keyword
  • Throw vs Throws, Final vs Finally vs Finalize
  • Exception Handling with Method Overriding Java Custom Exceptions

23. Java Annotations

This chapter deals with Java annotations, Built-In Java annotations like @Override, @SuppressWarnings, @Deprecated, @Target, @Retention, @Inherited, @Documented, Java custom annotations, and types of annotations.

24. Reflection in Java

  • Reflection API
  • NewInstance() & Determining the class object
  • Javap tool, Creating javap tool
  • Creating applet viewer
  • Accessing private method from outside the class

25. Java Array 

This chapter is about

  • Java Array
  • Types of array: single dimensional array, multidimensional array, declaration, instantiation, and initialization of Java array
  • Passing array to a method
  • Anonymous array in Java
  • Cloning an array in Java

26. String, String Buffer, String Builder

This is the most crucial chapter in the whole Java core curriculum. It will primarily cover three subjects, namely

  • String,
  • Immutable String
  • String Comparision, String concatenation
  • Substring
  • StringBuffer class
  • StringBuilder class
  • To String method
  • StringTokenizer class

27. Java Thread

  • Java multithreading
  • Multithreading life cycle of a thread creating
  • Thread scheduler
  • Sleeping a thread, Start a thread twice
  • Calling run() method
  • Joining a thread
  • Naming a thread
  • Thread priority,
  • Daemon thread
  • Thread pool
  • Thread group
  • Shutdownhook
  • Java Synchronization: synchronized method, synchronized block, static synchronization
  • Deadlock
  • Inter-thread Communication
  • Interrupting Thread

28. JDBC 

This chapter is about

  • JDBC Drivers
  • Steps to connect to Database
  • Connectivity with Oracle
  • Connectivity with MySQL
  • Connectivity with Access without DSN
  • DriverManager
  • Types of JDBC statements: Statement, Prepared statement, Callable statement
  • Database Metadata, Resultset Metadata
  • ResultSet, types of ResultSet,
  • Storing image, Retrieving image
  • Storing file, Retrieving file, Stored procedures, and functions
  • Transaction Management
  • Batch Processing
  • JDBC New Features, Mini Project, and interview questions.

29. Agile 

This chapter is about

  • Agile model
  • Advantages, and Disadvantages of Agile model
  • Agile versus Waterfall method
  • Important terminology: Scrum, Scrum Master, Flow of Agile Implementation, Sprint, and Burn down Charts.

30. Design Pattern

This chapter is about

  • Singleton Object
  • Singleton design pattern with Serialization
  • Factory Pattern
  • Abstract Factory.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.