Sunday, February 26, 2017

Java Implementation ! Challenge 2 : Simple Substraction Quiz

What's up guys welcome back to my tutorial blog. Hope you guys enjoy learn programming from my blog these entire time. By the way in this new series from my blog I'm gonna show you guys the implemantation of Java programming languange. This time, I'm gonna show you guys how to make a simple substraction quiz program.

So this program you're about to learn is gonna ask the user to start the quiz. Then showing the simple math quiz of substraction.In this simple quiz, the user is gonna answer 5 questions. Also, this program is gonna show the user the total correct and incorrect answer that they made with the time they take to answer all the questions.

Please notice that in this Tutorial Series, I'm gonna use Notepad++ instead of eclipse, I also suggest you guys to do the same thing. Because whenever you guys are using an IDE like eclipse, you will find your error syntax faster than it should. While learning programming, the more time you spend on it, the more you will get used to it. I want you guys to spend more time in coding, because that's what great programmers did. As usual, I'm gonna show you guys the program first, I want you guys to read it carefully, then I'm gonna explain each part of the codes. Here we go.

Thursday, February 23, 2017

Java Implementation ! Challenge 1 : Showing Current Time

What's up guys welcome back to my tutorial blog. Hope you guys enjoy learn programming from my blog these entire time.By the way in this new series from my blog I'm gonna show you guys the implemantation of Java programming languange. The reason why I make this Challenge Series is because I want you guys to know what you guys are learning about. No one feel comfortable while learning something that they don't know what is it for.

In this first Java Challenge series, I'm gonna show you guys how to show the current time in Greenwich Mean Time format (00:00;00). For example, the time when I write this post is 17:44:30. Also, in this Tutorial Series, I'm gonna use Notepad++ instead of eclipse, I also suggest you guys to do the same thing. Because whenever you guys are using an IDE like eclipse, you will find your error syntax faster than it should. While learning programming, the more time you spend on it, the more you will get used to it. I want you guys to spend more time in coding, because that's what great programmers did. As usual, I'm gonna show you guys the program first, I want you guys to read it carefully, then I'm gonna explain each part of the codes. Here we go.

Monday, February 13, 2017

Learn Java for Beginner easily ! part 19 : Conditional Operators

     What's up Guys ! Welcome back in my Java tutorial series. First I want to say sorry guys because  I haven't been posting for a long time. Well , I'm kinda busy with college. Ok ! now in this quick tutorial I'm gonna show you guys how to use Conditional Operators. As usual, I want you guys to learn by examples because most people learn about something easier in that way. Enough with the chit chat, go write this codes below :

Saturday, February 4, 2017

Learn Java for Beginner easily ! part 18 : Else If Statement

     What's up Guys ! Welcome back in my Java tutorial series. First, I want you guys to know that this part is not too far away from the previous part . In this part of tutorial I'm gonna show you something else on how to use If statement but It kinda different. It's called else if statement. This kind of trick of how to use if statement will have its own function depend on how you want your program works.But, in my point of view, this one is easier to be learned.

First, as usual guys I want you to type this program below and run it. I'm sure you guys are like kinda understand this easily because if you've understand the previous part . The different is, that in this one we will see less brackets because each condition only have one code to be excecuted.

Learn Java for Beginner easily ! part 17 : Nested If

What's up Guys ! Welcome back in my Java tutorial series parts season 1. No, I'm just kidding hahaha. So in a couple of tutorials ago, I've thaught you guys about if statement , precisely on Part 9 .
So if you guys still have no idea about what if statement is, go check Part 9 now. I mean like right now.

In this part of tutorial I'm gonna show you guys something called Nested if statements. What is Nested if statements ?  Nested if statements is a bunch of if statements that nesting in one place to determine which code to run based on the match with the value. If you guys are confused, Just look at the picture below.

Wednesday, February 1, 2017

Learn Java for Beginner easily ! Part 16 : Constructors

     What's up guys ! Welcome back to my Java tutorials series. In this tutorial I'm gonna teach you guys about constructors. What a Constructors does is to allow you to initialize a variable as soon as you create a new object (class). Let me guys explain it to you by example. Now I want you guys to type both of the codes below :