core java get started java JDBC Getting Started with JDBC Simple Guide Shaunak Jagtap 21:58 Add Comment Shaunak Jagtap (Step By Step)Java Database Connectivity ( JDBC ) WHY JDBC ? JDBC ensures DB vendor independence to Java Applications or Applets. HO... Read More
core java get started Core java logic building java Nested classes in Java Rules about Nested Classes in Java Shaunak Jagtap 08:33 Add Comment Shaunak Jagtap Nested Classes in Java (Rules) 1. The inner class(non-static nested) has access to all of the outer class's members, including those... Read More
core java get started Core java logic building java Java wrapper classes wrapper classes in Java Shaunak Jagtap 12:37 1 Comment Shaunak Jagtap Java wrapper classes 1. What's need of wrapper classes? ---1. to be able to add prim types to growable collection(growable data st... Read More
core java get started Core java logic building java Java API String class API Java Shaunak Jagtap 12:32 Add Comment Shaunak Jagtap String class API Important String class constructors 1.String(byte[] bytes) --- byte[] ----> String converter 2.String(char[] cha... Read More
core java get started Core java logic building java What does it mean for a subclass-outside-the-package to have access to a superclass (parent) protected member? Shaunak Jagtap 12:28 Add Comment Shaunak Jagtap What does it mean for a subclass-outside-the-package to have access to a superclass (parent) protected member? It means the subclass inhe... Read More
core java get started Core java logic building interfaces java Java Interfaces Simplified Shaunak Jagtap 01:20 1 Comment Shaunak Jagtap Java Interfaces Why we need Java Interfaces ? 1. As an alternative to multiple inheritance. 2. Allows complete loosely coupled archit... Read More
core java get started java Polymorphism Polymorphism rules in Java JAVA Polymorphism Simplified: Shaunak Jagtap 01:04 Add Comment Shaunak Jagtap Polymorphism in Java : Defination of Polymorphism: one functionality with multiple (changing) forms , static & compile time with ear... Read More
core java get started Core java logic building inheritance java Java Inheritance Simplified Shaunak Jagtap 00:30 Add Comment Shaunak Jagtap Inheritance in Java: In OOP, we often organize classes in hierarchy to avoid duplication and reduce redundancy. The classes in the lower ... Read More
core java get started Core java logic building java CORE JAVA Point2D PROGRAM Shaunak Jagtap 21:19 Add Comment Shaunak Jagtap Problem Statement: Create Java Application for the following . Create Point class Point2D in package "geom" : for representing a... Read More