Core Java Course Syllabus(Total Duration-35hrs)

    Module 1: Introduction (Duration-0.5hr)

    • Java Why? What? How? When? Where?
    • Different Java Versions.
    • How Java is different from other Technologies
    • Module 2: Introduction To Java Programming Environment (Duration-1hr)

      • How to Install & set Path.
      • A Simple Java Program
      • Compiling & executing Java Program
      • Phases of Java Program
      • Analysis of a Java Program
      • Understanding Syntax and Semantic Error,
      • Runtime Exception
      • Name of a Java Source File
      • Platform Independency
      • Java Technology (JDK, JRE, JVM, JIT)
      • Features of Java
      • Text Editors
      • Consoles
      • Module 3: Fundamentals of Java Programming (Duration-1hr)

        • Naming convention of Java language
        • Comments
        • Statements
        • Blocks (Static, Non-static/instance)
        • Identifiers
        • Keywords
        • Literals
        • Primitive Data Types, Range
        • Reference (User defined) Data type
        • Variables (Primitive, Reference)
        • Type Casting, Default Value
        • Operators
        • Program/Interview questions
        • Module 4: Control Structures (Duration-1hr)

          • Working with Control Structures
          • Types of Control Structures
          • Decision Control Structure (if, if-else, if else if, switch –case)
          • Repetition Control Structure (do –while,while, for)
          • Program/Interview questions
          • Module 5: Input Fundamentals And Datatypes In Java (Duration-2hrs)

            • Java program inputs from Keyboard
            • Methods of Keyboard inputs
            • Scanner, Buffered Reader
            • Problem Solving
            • Java Array
            • What is Array
            • Array Declaration in java vs C and C++.
            • Instantiation of an Array
            • String vs character array.Accessing Array
            • Elements, Default Value, for-each loop, varargs
            • Length of an Array (What is –Array Index Out Of Bounds Exception)
            • Increasing, Decreasing the Size and Copy of an Array
            • Multi-Dimensional Arrays
            • Program/Interview questions
            • Program/Interview questions Difference between C and C++ with Java
            • Application Compilation and Run
            • Interview related Question and Answer
            • Module 6: Object Oriented Programming (Oops Concepts In Deep) (Duration-4hrs)

              • Procedural Vs Object Oriented Program
              • Different type of Program Procedural Vs Object Oriented.
              • Top Down Vs Bottom Up Approach
              • Introduction to Object Oriented
              • Abstraction, Encapsulation, Inheritance,
              • Polymorphism.
              • Introduction to Classes and Objects
              • Custom Class Definition
              • Instance and Static Variables
              • Different ways to create Object Instance
              • Instance Variable and it’s role in a Class
              • Constructors, types of Constructor,
              • Constructor Rule, Constructor Overloading
              • Static Variable and it’s use.
              • Methods and their behavior.
              • Constructor vs Methods
              • Constructors
              • “this” Keyword
              • Java Access Modifiers (and Specifiers)
              • Programming Interview related Question and Answer
              • Call by value, Call by reference
              • Module 7: Command-Line Arguments (Duration-1hr)

                • What is a Command-Line Argument?
                • Java Application with Command-Line Arguments
                • Conversion of Command-Line Arguments
                • Passing Command-Line Arguments
                • Using methods (Static , Non Static)
                • Module 8: Integrated Development Environment (Duration-0.5hr)

                  • Using various Editors
                  • Program Compilation, Execution in Editor
                  • Using Eclipse IDE
                  • Project Set Up
                  • Source File Generation
                  • Application Compilation and Run
                  • Module 9: Inner Class (Duration-1hr)

                    • First View of Inner Class
                    • Outer Class Access
                    • Types of Inner Class
                    • Module 10: Inheritance (Duration-2hrs)

                      • Complete concepts of Inheritance
                      • Sub-Classes
                      • Object Classes
                      • Constructor Calling Chain
                      • The use of “super” Keyword
                      • The use of “private” keyword inheritance.
                      • Reference Casting
                      • Module 11: Abstract Classes and Inheritance (Duration-2hrs)

                        • Introduction to Abstract Methods
                        • Abstract Classes and Interface
                        • Interface as a Type
                        • Interface v/s Abstract Class
                        • Interface Definition
                        • Interface Implementation
                        • Multiple Interfaces’ Implementation
                        • Interfaces’ Inheritance
                        • How to create object of Interface
                        • Module 12: Polymorphism (Duration-1hr)

                          • Introduction to Polymorphism
                          • Types of Polymorphism
                          • Overloading Methods
                          • Overriding Methods
                          • Hiding Methods
                          • Final Class and Method
                          • Polymorphic Behavior in Java
                          • Benefits of Polymorphism
                          • “Is-A” vs “Has-A”
                          • Association Vs Aggregation
                          • Interview related Question and Answer.
                          • Module 13: Package (Duration-2hrs)

                            • Package and Class path and its use
                            • First look into Packages
                            • Benefits of Packages
                            • Package Creation and Use
                            • First look into Class path
                            • Class path Setting
                            • Class Import
                            • Package Import
                            • Role of public, protected, default and private w.r.t package
                            • Namespace Management
                            • Package vs. Header File
                            • Creating and Using the Sub Package
                            • Sources and Class Files Management
                            • Module 14: Using Predefined Package & Other Classes (Duration-2hrs)

                              • Java.lang Hierarchy
                              • Object class and using toString(), equals(),hashCode(), clone(), finalize() etc
                              • Using Runtime Class, Process Class to play music, video from Java Program
                              • Primitives and Wrapper Class
                              • Math Class
                              • String, StringBuffer, StringBuilder Class
                              • String Constant Pool
                              • Various usage and methods of String,StringBuffer, StringBuilder
                              • Wrapper Classes
                              • System Class using gc(), exit(), etc.
                              • Module 15: New Concepts In Package (Duration-1hr)

                                • Auto boxing and Auto unboxing
                                • Static import.
                                • Instance of operator.
                                • Enum and its use in Java
                                • Working with jar
                                • Module 16: Garbage Collection (Duration-0.5hr)

                                  • Garbage Collection Introduction
                                  • Advantages of Garbage Collection
                                  • Garbage Collection Procedure
                                  • Java API
                                  • Interview related Question and Answer
                                  • Module 17: Exception Handling (Duration-2hrs)

                                      Module 17: Exception Handling (Duration-2hrs)

                                    • Introduction to Exceptions
                                    • Effects of Exceptions
                                    • Exception Handling Mechanism
                                    • Try, catch, finally blocks
                                    • Rules of Exception Handling
                                    • Exception class Hierarchy, Checked &
                                    • Unchecked Exception
                                    • Throw & throws keyword
                                    • Custom Exception Class
                                    • Chained Exception.
                                    • Resource handling & multiple exception class
                                    • Interview related Question and Answer.
                                    • Module 18: Multithreading (Duration-3hrs)

                                      • Introduction
                                      • Advantages
                                      • Creating a Thread by inheriting from Thread class
                                      • Run() and start() method.
                                      • Constructor of Thread Class
                                      • Various Method of Thread Class
                                      • Runnable Interface Implementation
                                      • Thread Group
                                      • Thread States and Priorities
                                      • Synchronization method, block
                                      • Class & Object Level Lock
                                      • Deadlock & its Prevention
                                      • Inter thread Synchronization
                                      • Life Cycle of Thread
                                      • Deprecated methods : stop(), suspend(),resume(), etc
                                      • Interview related Question and Answer
                                      • Module 19: Input and Output Streams (Duration-3hrs)

                                        • Java I/O Stream
                                        • I/O Stream – Introduction
                                        • Types of Streams
                                        • Stream Class Hierarchy
                                        • Using File Class
                                        • Copy and Paste the content of a file
                                        • Byte Streams vs Character Streams
                                        • Text File vs Binary File
                                        • Character Reading from Keyboard by Input Stream Reader
                                        • Reading a Line/String from Keyboard by Buffered Reader
                                        • Standard I/O Streams Using Data Streams to read/write
                                        • primitive data
                                        • PrintStream vs PrintWriter Using StreamTokenizer and RandomAccessFile
                                        • Interview related Question and Answer
                                        • Module 20: Serialization (Duration-0.5hr)

                                          • Introduction to Serialization
                                          • Using Object Streams to read/write object
                                          • Transient Keyword
                                          • Serialization Process
                                          • Deserialization Process
                                          • Interview related Question and Answer
                                          • Module 21: Collection Framework (Duration-3hrs)

                                            • Generics(Templates)
                                            • What is generic
                                            • Creating User defined Generic classes
                                            • The java.util package
                                            • Collection
                                            • What is Collection Framework
                                            • List, Set & Map interfaces
                                            • Using Vector, Array List, Stack,
                                            • Linked List, etc.
                                            • Using Collections class for sorting
                                            • Using Hashtable, Hash Map, Tree Map,
                                            • SortedMap, LinkedHashMap etc.
                                            • Iterator, Enumerator.
                                            • Using Queue, Deque, SortedQue, etc.
                                            • Using HashSet, TreeSet, LinkedHashSet etc
                                            • Using Random class
                                            • Using Properties in a Java Program
                                            • Using user defined class for DataStructure
                                            • Using Date and Formatting Date class.
                                            • Interview related Question and Answer
                                            • Module 22: Java 8/9/10 Features (Duration-1hr)

                                              Core Java certification Training in Bangalore

                                              We will guide you to clear the (Certified Core Java Developer Certification) that we are providing is an integrated process that consists of a series of classes and expert lecture sessions. By the end of the certification process, we conduct assessments to test your skills and later award you with certificate as an indicator of your expertise in the subject and technology.

                                              I would like to thank Besant Technologies for their wonderful support and the assistance offered during the course of my Core Java training process. The trainers were extremely experienced and resourceful which helped us in getting a better grasp on all the subjects. Also, the study materials which were provided was of immense value

                                              Kaviya

                                              The training I obtained in Besant Technologies has helped me a lot in gaining knowledge about Core Java Technology. I will now recommend Besant Technologies to all my friends and family. Their training has played a major role in aligning my focus with technology and being able to comprehend it.

                                              Tharuna
                                              GangBoard

                                              For Online Training

                                              We are the No.1 Leading Provider for Online Training

                                              Join With Us

                                              GangBoard

                                              Key Features

                                              • Qlikview: 30 – 45 Days Practical Classes
                                              • In Class, You Get In-Depth Practical Knowledge on each Topic
                                              • Weekdays Classes
                                              • Weekend Classes
                                              • Location: Courses are run in our Bangalore training centres (BTM Layout, Marathahalli, Jayanagar)
                                              • Can be on-site at client locations (Corporate Training and Online Sessions)
                                              • Pay only after Attending FREE DEMO CLASS
                                              • Highly cost effective Training Fees
                                              • Real Time Case Studies To Practice
                                              • Free Wifi to learn subject
                                              • Latest Study Material
                                              • Attend 1st Class Free
                                              • Fast Track courses

                                              TIM Training Academy enjoys strong relationship with multiple staffing companies in India and have +60 clients across the globe. If you are looking out for exploring job opportunities, you can pass your resumes once you complete the course and we will help you with 100% job assistance.

                                              • Lots of MNC Companies and Recruitment Firms contacts us for our students profiles on regular basis
                                              • We help our students prepare their Resumes
                                              • We Provide Assistance for Interview Preparation
                                              • Latest and Update Course Contents as per corporate standards.
                                              • ONE-to-ONE Tuitions to make Students Data Analytics Experts
                                              [/fusion_tab]

                                              Thanks for the best ever Training. I did my Android Course here. Trainer is very good in knowledge. They provides the best ever Support to me.

                                              Kaviya
                                              [/fusion_tabs]