Category: OOP

07
May
2022

C++ Course: Beginning C++ Programming – From Beginner to Beyond: Udemy

Some parts from beginning are written in my wiki. 07.05.2022: Default constructor parameters Smart Pointers: Shared pointer:…

18
Feb
2022

Clean Code

23
Sep
2020

Class Object Example

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

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
Jul
2020

Java serious OOP Practice

Problem statement: Write a program to simulate a car dealership sales process. We will have employees, working…

24
Jun
2020

Interface, Abstract Class and Polymorphism Example

Animal.java class package com.zakilive; public abstract class Animal { //defining attributes String name; int weight; String gender;…