WE MADE IT TOGETHER!!! THANK YOU!

112 wildfires have broken out this summer along the Aegean and Mediterranean coastlines. One of them being my family village Orhaniye in Marmaris. My grandfather was born and raised in this village and he was desperately looking for help like many of us! Our country did not have enough resources to control and stop theseContinue reading “WE MADE IT TOGETHER!!! THANK YOU!”

String & Math Methods

Hello everyone!  We will be discussing a very important topic which is String & Math Methods.  String Methods In Java variables post, String is defined as one of the most used variables and defined like following; String – text, such as “Hi”. String values need double quotes and String keyword should start with a capitalContinue reading “String & Math Methods”

The structure of Java programming

We talked about variables, operators, user input and static keyword so far for java programming.  I hope it gives you a good start.  In this post,  I would like to give you a brief explanation about the typical structure of Java so you can start connecting part of the puzzles together when we continue learningContinue reading “The structure of Java programming”

Static Keyword

The static keyword is used mainly for memory management. We can apply static keyword with variables, methods, blocks and nested classes (defining a class within another class).  Examples; //static variables Static int count; //static method Static void x(){} //static block Static{ //code } //static nested class Class main{ Static class nestedStatic{ } } The staticContinue reading “Static Keyword”