- Kotlin - Exception Handling
- Kotlin - Destructuring Declarations
- Kotlin - Delegation
- Kotlin - Generics
- Kotlin - Sealed Class
- Kotlin - Data Classes
- Kotlin - Extension
- Kotlin - Visibility Control
- Kotlin - Interface
- Kotlin - Abstract Classes
- Kotlin - Inheritance
- Kotlin - Constructors
- Kotlin - Class and Objects
- Kotlin - Maps
- Kotlin - Sets
- Kotlin - Lists
- Kotlin - Collections
- Kotlin - Break and Continue
- Kotlin - While Loop
- Kotlin - For Loop
- Kotlin - When Expression
- Kotlin - if...Else Expression
- Kotlin - Control Flow
- Kotlin - Functions
- Kotlin - Ranges
- Kotlin - Arrays
- Kotlin - Strings
- Kotlin - Booleans
- Kotlin - Operators
- Kotlin - Data Types
- Kotlin - Variables
- Kotlin - Keywords
- Kotlin - Comments
- Kotlin - Basic Syntax
- Kotlin - Architecture
- Kotlin - Environment Setup
- Kotlin - Overview
- Kotlin - Home
Kotlin Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Kotpn - Control Flow
Kotpn flow control statements determine the next statement to be executed. For example, the statements if-else, if, when, while, for, and do are flow control statements.
Flow Chart for Control Flow
Control flow can be depicted using the following Flow Chart:
Kotpn Control Flow Statements
This tutorial will take you through all these statements one by one explaining their usage and suitable examples.
Quiz Time (Interview & Exams Preparation)
Q 1 - Which of the following is true about Control Flow Statement?
Answer : D
Explanation
All the mentioned statements are correct about control flow.
Q 2 - Which of the following is a control flow statement in Kotpn?
Answer : C
Explanation
Here keyword when is part of the Kotpn Control Flow statements
Q 3 - If we do not have control flow statements, then it will be almost impossible to write a computer program?
Answer : A
Explanation
Yes it is true, control flow statements are essential part of any programming languages to write a program.
Advertisements