IF statement is a simple control statement that are used to verify one or ...
IF statement consists of a one or more logical expressions/Conditions followed by one or ...
IF statement within another IF statement is called as Nested IF statement. Similarly IF ...
CASE statement used to validate one operand value with multiple values at a time. ...
In some cases, a block of statements needs to be executed repeatedly. Looping statements(While, ...
WHILE loop executes the block of statements until the specified condition is false. The ...
Internal tables used during the program execution for processing the data dynamically. So, the internal ...
DO loop executes the block of statements until the specified number of times. DO ...
Internal tables used for processing the data dynamically during the program execution. So, populating ...
A loop in the another loop is called as nested Loop. These loops can ...