Arun Chandravanshi

Kotlin break

In this tutorial, you will learn to use break to terminate a loop. Also, you will learn about break labels. Kotlin break example The break is a loop control statement which is used to terminate the loop. Basically break statements are used in the situations when we are not sure about the actual number of […]

Kotlin break Read More »

Kotlin for Loop

The for loop in Kotlin iterates through anything that provides an iterator. In this article, you learn to create for loop (with the help of examples). Syntax The syntax of for loop in Kotlin is: for (item in collection) { // body of loop } In Kotlin, for loop is used to iterate through the following because all

Kotlin for Loop Read More »

Java for-each Loop

In this article, you will learn about the for-each loop and how to create for-each loop in Java programming. Apart from the standard for loop, Java provides you another form of for loop to work with arrays or collection, known as the enhanced for loop. To learn more about standard for loop in Java visit

Java for-each Loop Read More »

Java for Loop

In this article, you will learn about how to create for loop in Java programming with the help of examples. Loops in Java are used when we want to execute a block of statements repeatedly until a specific condition is met(condition is false). Java for Loop A for loop is used to repeat a specific block

Java for Loop Read More »

Kotlin do-while Loop

In this article, you will learn about the do-while loop and how to create do-while loop in Kotlin programming. Loops in Kotlin are used when we want to execute a block of statements repeatedly until a specific condition is met(condition is false). Kotlin do-while Loop Kotlin’s do-while loop is an exit-control loop, which means unlike while loop, the do-while

Kotlin do-while Loop Read More »

Kotlin while Loop

In this article, you will learn about while loop and how to create while loop in Kotlin programming. Loops in Kotlin are used when we want to execute a block of statements repeatedly until a specific condition is met(condition is false). Kotlin While Loop The while loop executes the block of code as long as a specified

Kotlin while Loop Read More »

Java do-while Loop

In this article, you will learn about the do-while loop and how to create do-while loop in Java programming. Loops in Java are used when we want to execute a block of statements repeatedly until a specific condition is met(condition is false). Java do-while Loop Java do-while loop is an exit-control loop, which means unlike while loop,

Java do-while Loop Read More »

Java while Loop

In this article, you will learn about while loop and how to create while loop in Java programming. Loops in Java are used when we want to execute a block of statements repeatedly until a specific condition is met(condition is false). Java While Loop The while loop executes the block of code as long as a

Java while Loop Read More »

Java switch Statement

In this article, you will learn to use switch statement to control the flow of your program’s execution. Java switch Statement When we want to execute a particular block of code/statements among many blocks we can use switch statement. Syntax // switch statement switch(expression/variable) { // case statements // values must be of same type

Java switch Statement Read More »

Kotlin when Expression

In this article, you will learn about when expression in Kotlin with the help of various examples. In Kotlin, when replaces the switch operator of other languages like Java, C, C++, etc. when matches its argument against all branches sequentially until some branch condition is satisfied. After the first match found, it reaches to end of the

Kotlin when Expression Read More »