Firas AhmedinJavarevisitedGuide to Wrapper Classes in JavaWrapper classes, also known as wrappers are one of the core features in Java. They’re essentially pre-defined classes that mirror primitive…May 17May 17
Firas AhmedinJavarevisitedGuide to extends vs. implements Keywords in JavaIn Java, extends and implements are two keywords that are closely associated with inheritance and interfaces. Let’s discuss them more in…Apr 28Apr 28
Firas AhmedinJavarevisited11 Tips To Survive As A Junior DeveloperStarting a career in programming can feel quite challenging, whether you are a fresh graduate or a professional from another field who…Apr 28Apr 28
Firas AhmedinJavarevisitedIn Method Overriding, How Does Java Determine Which Overridden Method to Execute?One of the most prominent features in Java that we’re familiar with as Java developers is method overriding, which is a way to achieve…Apr 15Apr 15
Firas AhmedinILLUMINATIONHow I got motivated to do more work and be more productiveProcrastination, distractions and lack of motivation are quite common problems for anyone dealing with loads of tasks and responsibilities…Apr 8Apr 8
Firas AhmedinJavarevisitedGuide to Instance Vs. Static MethodsWorking with Java exposes you to various Object Oriented concepts. Among them are two important ones concerned with methods: static and…Apr 5Apr 5
Firas AhmedinJavarevisitedThe difference between Interface & Abstract Class in JavaInterfaces and abstract classes are two key components in Java and Object Oriented Programming that you’ll be exposed to whenever you…Apr 53Apr 53
Firas AhmedinJavarevisitedGuide to Type-CastingType-casting refers to the process of converting from one data type to another. This is useful when you need to work with different data…Apr 21Apr 21
Firas AhmedinJavarevisitedA Simple Guide to Java ConstructorsWorking with Java means you’ll consistently come across various Object Oriented Programming concepts in your development journey. One key…Apr 2Apr 2
Firas AhmedinJavarevisitedThe Difference between A Setter Method and Constructor When Setting a Variable’s ValueJava provides different ways to set a value of an instance variable of a class. Among them are two common approaches: using the constructor…Apr 1Apr 1