ShriRam Changed status to publish September 30, 2022
Every Computer Language is made up of three components
1. Chars: (Char is a symbol that represent something that have some fix meaning). Chars are divided in three categories
- Alphabets
- Numbers
- Symbols
2.Words: Word is a meaningful combination of chars. Words are divided in two categories
- Reserve words: that are predefined by the language.
- User defined words: words that are defined / created by users of the language that are not predefined.
3. Syntax/Grammar: Grammar is a set of rules or regulation to construct the sentences. Syntax refers to the rules that specify the correct combined sequence of symbols that can be used to form a correctly structured program using a given programming language.
ShriRam Changed status to publish September 30, 2022