Category: OO Analysis and Design

23
Jun
2020

My Java OOP example from Lessons

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

23
Jun
2020

My Beautiful Crafted Java OOP

Human.java package com.zakilive; public class Human { String name; int age; int heightInInches; String eyeColor; public Human(String…

13
Jun
2020

Design Pattern and Object oriented Data Analaysis

Writing here to clearing engineering concept of a software for future reference. Example for Class, Constructors and…

20
Dec
2019

What is this keyword in OOP

What is “this”? You may have noticed something slightly strange in our methods. Look at this one…

20
Dec
2019

JavaScript OOP Paradigm Clear

https://www.freecodecamp.org/news/an-introduction-to-object-oriented-programming-in-javascript-8900124e316a/ https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/Basics  

27
Oct
2019

OOP concept clearings from some MOOC courses

Code: Student.java   class Student{     //variable declaration     int id;     String name;     String gender;     //method deinitions     boolean updateProfile(String newName){         name=newName;         return true;     } }   StudentTest.java class StudentTest{…