[vc_row][vc_column][vc_column_text]There are certain words in Kotlin that have special meaning and cannot be used as identifiers(variable name, function name, class name etc). These words are called reserved words or keywords. In this guide, we will learn about keywords and identifiers.[/vc_column_text][vc_custom_heading text=”Types of Keywords in Kotlin “][vc_column_text]We have two types of keywords: 1. Hard Keywords 2. Soft Keywords[/vc_column_text][vc_custom_heading text=”1. Hard Keywords”][vc_column_text]These keywords cannot be used as identifiers. For example This is valid: //valid variable name val myvar = 5 This is invalid: //error: "else" cannot be used as a variable name val else = 5 Kotlin Hard keywords Table as class break…