Passion for CS

A blog for computer science passionates.

Thursday, 11 June 2020

Wednesday, 27 May 2020

Hello Friends!!!Welcome to passionforcs,Once upon a time I played a game especially puzzle and I tried to solve it. And of course, I solved :) (Kidding) but I solved, and my friend asked me how much time did you spent to solve this puzzle? And I got stuck & went in deep thinking of Machine Learning.When we train our model, at that time also we...

Tuesday, 19 May 2020

Hello Freinds!!!Welcome to passionforcs,In this article, we are going to learn one more flow breaking (jumping) statement i.e. continue. continue statement is another flow breaking statement.continue statement skips an iteration, when continue occurs control directly transfers to the condition for the next iteration. In the above example, we can see...

Tuesday, 5 May 2020

Hello Friends!!!Welcome to passionforcs,In this article, we are going to learn flow breaking statements. In Java, there are three different flow breaking statements such as, break, continue, and return.Lets' understand the break statement is used to break the entire code block. We use break statement with switch statements to break the case statement....

Saturday, 2 May 2020

Hello friends!!!Welcome to passionforcs,In this article, we are going to discuss different flavors of for loop, in the previous article we have already seen that what is looping and how many looping statements are there? and basic syntax of looping statements but we can use for loop differently and we can play with the same syntax of for loop let's...

Monday, 20 April 2020

Hello Friends!!!Welcome to passionforcs,In this article, we are going to learn Iterative statements in Java. Iterative statements are generally known as looping statements. Looping statements are used to create a chain to perform the same task. such as if we want to print PassionForCS for five times, we can print the same sentence simply by using System.out.println()...

Tuesday, 7 April 2020

Hello Friends!!!Welcome to passionforcs,Today I am going to share decision making statements :) Make Firm Decision & Draw Your PathImage Src: pixabayas you are already familiar with decision making. So, let's start with the decision making statements.There are different decision making statements available in Java such as, Statement ...