Category: Java

22
Oct
2020

Java Puzzles to Eliminate Code Fear

A method is a set of code   variable string return void method String -equals -equalsIgnoreCase -Indexof…

23
Sep
2020

Class Object Example

Class Object – Earth is a software application where human and other thing is software objects.For creating…

19
Sep
2020

Interface Polymorphism Example

Robot.java package com.zakilive.ooplearningbyme; public class Robot implements Walkable { public void walk(){ System.out.println(“Robot Walking”); } }  …

17
Sep
2020

Java learned as so far:

Java variables, Array, 2d array Method Different method invoking and return type Class – Class is actually…

01
Sep
2020

JDBC

JDBC=Java Database Connectivity

07
Jul
2020

ArrayList in Java

ArrayList in Java: package com.zakilive; import java.util.ArrayList; public class Main { public static void main(String[] args) {…