Jump Statement makes the control jump to another section of the program unconditionally when encountered. It is usually used to terminate the loop or switch-case instantly. It is
The Do-while loop is an exit controlled loop. In simple words, the test condition is present after the body of the loop.The special feature of a do-while loop
In the previous tutorial for the For Loops we saw that apart from for loop there are two other loops that are: while loop and do-while loop. These loops basically
Iteration is the process where a set of instructions or statements is executed repeatedly for a specified number of time or until a condition is met. These statements
A subgraph T of a connected, undirected and weighted graph G(V, E) referred as Spanning Tree provided, Subgraph possesses all the vertices of the graph G(V, E) Subgraph
Determining the optimal path(such that the sum of weight of its constituent edges is minimum) between the nodes of a weighted graph is referred as Shortest Path Problems.
Switch statements are also decision-making statements that choose to execute a particular block of statements from many cases that have been provided in the code by the programmer.
Control flow or Flow of Control is the sequence or the order in which the code statements are executed. This can be explicitly controlled in an imperative programming language