Advance Java Course

Advance Java Syallbus

  • Why you should learn Java?
  • Introduction to programming languages
  • Installing Java Development Kit (JDK)
  • JDK, JRE and JVM
  • Importance of Java in the context of Internet
  • Features of Java
  • Object Oriented Programming Paradigm (OOP)
  • Relationship between classes and objects
  • Features of OOPs – Encapsulation, Inheritance, Abstraction and Polymorphism
  • Data types in Java – Integers, floating-point, characters, boolean
  • Concept of variables, their declarations
  • Literals – Integer, floating-point, character, boolean, strings
  • How to Write java code, compile and execute?
  • First Java Program using Notepad
  • Explanation of important terms like main(), public, void, static
  • First Java Program using Netbeans
  • Using Command Line arguments in Java program written in Notepad
  • Using Command Line arguments in Java program written in Netbeans
  • Introduction to IDEs
  • Components of Netbeans
  • Creating a project in Netbeans
  • Exporting & importing projects
  • Reading values from keyboard using Scanner class object
  • Tricks to prevent the skipping of String input value
  • Implicit type casting
  • Explicit type casting
  • Operators in Java
  • Precedence and associativity of operators
  • Examples of precedence and associativity
  • Programs illustrating usage of arithmetic operators, relational operators, logical operators, unary operators, ternary operator
  • Compound assignment operators
  • Programming Construct Sequence
  • if statement
  • if else if ladder
  • Nested if
  • Overview of switch case construct
  • Difference between if and switch case
  • Basics of loops and while loop
  • while loop pre-tested property
  • Basics of do..while loop
  • while loop post-tested property
  • Basics of for loop
  • for loop pre-tested property
  • More features of for loop
  • Infinite loops
  • Using break statement
  • Using continue statement
  • Programs to find – Factorial, Reverse a number, Palindrome number, Armstrong number, Prime number, Biggest among n numbers
  • Using for each format of the for loop
  • break and continue statements with examples
  • Nested while loop with examples
  • Nested for loop with examples
  • Programs – using loops
  • Programs – using nested loops
  • The basic concept of arrays
  • Declaring an array dynamically using two methods
  • Traversal of array elements
  • Initialising array elements
  • Linear Search Logic and Algorithm
  • Logic of Binary Search
  • Algorithm of Binary search
  • Programs – Linear Search and Binary search
  • Logic of Bubble sort
  • Algorithm of Bubble sort
  • Logic of Selection sort
  • Algorithm of Selection sort
  • Programs – Bubble sort and Selection sort
  • Basics of double dimensional arrays
  • Double dimensional arrays with different number of columns
  • Matrix addition – logic and program
  • Logic of matrix multiplication
  • Algorithm and program of matrix multiplication
  • Using sort method of Arrays class
  • Basics of functions
  • Developing Functions – with a practical approach
  • Scope of variables in functions
  • Some facts about return statement
  • Passing an array to a function
  • Recursion (Recursive functions)
  • Method Overloading (Compile-time polymorphism)
  • Basics of servlets
  • Difference between servlets and JSP
  • Introduction to important classes and interfaces
  • First servlet Program – Reading from an HTML form
  • Creating an HTML form within a servlet
  • Dealing with numbers in servlets
  • Introduction to RequestDispatcher interface
  • Coding with RequestDispatcher interface
  • Introduction to SendRedirect method and difference from forward method
  • Coding with sendRedirect method
  • Working with hidden fields
  • URL rewriting
  • Introduction to cookies
  • Writing and reading cookies
  • Login and logout with cookies example
  • Introduction to ServletContext and ServletConfig interfaces
  • Storing and retrieving a single context parameters
  • Storing & retrieving multiple context parameters
  • Storing & retrieving a single config parameter
  • Storing & retrieving multiple config parameters
  • JDBC code for select SQL statement
  • JDBC code for insert SQL statement
  • JDBC code for delete SQL statement
  • Practical coding of classes and objects
  • Constructors in Java
  • Default Constructors
  • Constructor overloading
  • this keyword
  • Basics of getters and setters
  • Automatic creation of setter getter code
  • Basics of Packages
  • Access specifiers (Visibility modes) in Java
  • Understanding default and private members practically
  • Package classes in different programs
  • Working in different packages
  • Usage of import keyword of Java
  • The basics of interfaces
  • Practical coding of interfaces
  • An interface extending another interface
  • Introduction to Inheritance
  • Syntax of applying Inheritance and Method overriding
  • Multi-Level inheritance
  • Basics of Polymorphism
  • Practical implementation of Polymorphism
  • Basics of exception handling
  • Uncaught exceptions
  • Catching exceptions using try …. catch blocks
  • Multiple catch blocks
  • Calling a method from within try block
  • Using super class Exception
  • Handling NullPointerException
  • Handling NumberFormatException
  • throw: throwing an exception manually
  • throws: handling checked exceptions
  • Nested try block
  • Basics of Collections and ArrayList traversal using Iterator interface
  • Traversing ArrayList elements using for each loop
  • Storing objects of user defined classes in collection
  • Using toArray() method of ArrayList class
  • LinkedList Collection
  • ListIterator interface – Traversing collection elements in both directions
  • Using sort method of Collections class
  • Sorting user-defined objects
  • Basics of Multithreading
  • Implementing Runnable interface for Multithreading
  • Extending Thread class for Multithreading
  • Thread Names, Priorities, parent thread
  • Method main as a thread
  • Introduction to DBMS & Databases
  • Creating a Database and Table using MySQL Workbench GUI
  • Creating a Database and Table at command prompt
  • Issuing SQL statements on Command prompt
  • Basics of JDBC
  • Architecture of JDBC
  • Coding JDBC program for SQL statement Select, Insert, Delete, Update
  • Basics of Java Applets
  • Writing your first applet and understanding life cycle
  • Working with colors and fonts
  • Passing parameters to an applet
  • AWT Controls
  • Using Fonts and Colors in AWT Controls
  • Positioning AWT Controls by setBounds() method
  • Basics of Swings & differences from Applets
  • Using setBounds() and setFonts() with swing controls
  • Using JCheckBox class object
  • Creating a tree structure using JTree class object
  • Requirements
  • Introduction to web applications
  • Installing Tomcat server
  • Installing Eclipse IDE
  • Connecting Eclipse to Tomcat
  • The very first program of JSP
  • JSP Tags
  • Implicit objects in JSP
  • Request implicit object of JSP
  • JSP tags practical examples
  • Using import
  • Including pages into a JSPpage
  • Difference between jsp:forward and jsp:include
  • Reading data from Textboxes
  • Alternative to getParameter() method
  • Reading data from dropdown list
  • Reading data from radio buttons (option buttons)
  • Reading data from a single checkbox
  • Reading data from a group of checkboxes
  • Concepts of cookies
  • Storing & retrieving cookies
  • Working with multiple cookies
  • Basic concepts of JSTL
  • Using & JSTL tags
  • Using JSTL tag
  • Using JSTL tag
  • Using , & JSTL tags
  • Understanding DBMS, databases & tables etc.
  • Getting familiar with JDBC API
  • Steps for JDBC coding
  • Downloading XAMPP for MySQL
  • Alert ! Listen before you proceed
  • Learning SQL
  • How to create a database and tables using GUI in XAMPP
  • Importing MySQL connector
  • Executing SQL command select in JDBC code
  • Displaying the rows in HTML table
  • Executing SQL command insert in JDBC code

Course Duration – 1 Month

Fees – 17,000/-

In the last 12 hours, 6 learners have onboarded with us

Advanced Java Course Schedule

Advanced Java Course Schedule

Week Topic
Week 1
  • Introduction To Java
  • Features Of Java
  • Data Types, Variables And Literals
  • Lets Dive Into The Java Coding
  • Important Options Of Netbeans IDE
  • Reading The Values Of Various Data Types
  • Operators
  • Programming Building Blocks (Control Structures)
  • Switch Case Construct
  • Iteration (Looping)
  • Honing The Programming Skills Using Loops
Week 2
  • The Concepts Of Arrays
  • Searching Techniques
  • Sorting Techniques
  • Double Dimensional (2D) Arrays
  • Functions (Methods)
  • Recursion
  • Method Overloading
  • Introduction To Servlets
  • Interaction Between Multiple Pages
  • Cookies In Servlets
  • Context Parameters And Config Parameters
  • Java Database Connectivity (JDBC) With Servlets
Week 3
  • Java Coding For Classes And Objects
  • Constructors
  • Getters And Setters
  • Packages In Java
  • Interfaces In Java
  • Inheritance
  • Polymorphism
  • Exception Handling
  • Java Collection Framework
  • Multithreading
  • Basics Of Database & MySQL
Week 4
  • JDBC (Java Database Connectivity)
  • Java Applets
  • AWT Controls
  • Java Swings
  • Introduction To Web Development
  • Lets Dive Into JSP Programming
  • Interacting With HTML Forms
  • Cookies In JSP
  • JSP Standard Tag Library (JSTL)
  • JDBC In JSP- Learning The Basics
  • JDBC In JSP- Coding Part
  • Fees And Duration
  • Project Work
  • Exam and Assignment

For developers who are proficient in Java, Java development is one of the most promising careers.Java developer is a desirable career path since it offers financial security and helps you stay on track with your professional objectives.

Benefits

Class Time:

Course Details:

Course Price:

Rs.17000

Lesson Duration

1 Months

Course Mode

Online & Offline Class

Places for Students

14

Language:

English, Hindi

Certifications

Digital, Physical

Location

Chembur, Govandi

H
M
S

In the last 12 hours, 6 learners have onboarded with us

FAQ

Our training center is conveniently located in Chembur  and Govandi 

You can enroll by visiting our website or contacting our office directly. Also Contact Directly Whatsapp No. +91 91672 43835 Phone No. +91 9167243835

Yes, we offer both online and offline classes to cater to different preferences. You can choose the mode that suits your schedule and learning style.

 

Yes, a certificate is provided upon course completion, and placement assistance is offered to help you secure relevant job opportunities.

The course fee is 17,000/- for the entire program.

 

The course duration is 1 months, providing a condensed and intensive learning experience.

 

In the last 12 hours, 6 learners have onboarded with us

Level up your Python skills with our course. Enroll now!

Discover the power of databases with our MySQL course. Dive into essential SQL skills for efficient data management

Begin your journey into Java programming with our Core Java course. Join now to unlock the essentials of Java development

Learn Top Trending Course In Programming Industry Basic to Advanced

Start your software development journey today. Enroll now!

Master C++ for efficient coding and development. Enroll now!

Scroll to Top

Start Your Journey with 100% Placement

GET DEMO LECTURE