Posts

Showing posts from January, 2024

Java for the masses!

Image
Java Installation On my Windows 11 Laptop, I went to  Java Downloads | Oracle  and downloaded the Java exe for x64 devices. I created a new repository for my class files in Azure Dev Ops, which I downloaded in Visual Studio Code, my IDE of choice. I had to add the JDK path to my system Path variables, after which I could compile and run a sample test file.  Java Hello World Program - GeeksforGeeks Object-Oriented Programming is the concept of creating classes to use as cookie cutters for creating objects that will contain desired behaviors. By combining these objects, coders can create system functionality in reusable chunks of code. Objects are created as classes that will define a concept. A car is an object with the following properties.     Name     Id     Description     Make     Model     Manufacturer     Trim     Year You can create multiple instances of a car class as objects represent...