Course Content
Flowgorithm Features
Flowgorithm Features
0/1
Flowgorithm User Interface
Flowgorithm User Interface
0/3
Flowgorithm Flowchart Shapes
Flowgorithm Flowchart Shapes
0/1
Flowgorithm Data Types
Flowgorithm Data Types
0/1
Flowgorithm Comments
Flowgorithm Comments
0/1
Flowgorithm Numbers
Flowgorithm Numbers
0/1
Flowgorithm Strings
Flowgorithm Strings
0/1
Flowgorithm File Format
Flowgorithm File Format
0/1
Flowgorithm Program Attributes
Flowgorithm Program Attributes
0/1
IPO Chart
IPO Chart ( Input, Process and Output Chart )
0/2
First Flowgorithm Flowchart
First Flowgorithm Flowchart
0/2
Add Two Numbers Flowchart
Add Two Numbers Flowchart
0/2
Flowgorithm Quiz
Flowgorithm Quiz
0/1
Flowgorithm Beginner Exercises
Flowgorithm Beginner Exercises
0/1
Flowgorithm Beginner Course
About Lesson

Identifiers

An identifier is a name assigned to a particular variable, function, procedure, or user-defined item. It labels a specific memory location where data is stored or actions are carried out.

The Flowgorithm Identifiers are the names used to identify variables, functions, etc., in the flowchart. There are some rules for naming the identifiers.

  • Identifiers can have letters and numbers. However, identifiers must start with a letter followed by a sequence of letters and numbers.
  • Identifiers cannot be predefined names or reserved words. This will confuse the flowchart interpreter.

Valid Identifier Names:green tick

Some valid identifiers are shown below:

  • name
  • age
  • digit
  • StudentName
  • Year2016

Invalid Identifier Names:red cross mark

Some invalid identifier names in the Flowgorithm are shown below:

  • boolean ( reserved word in Flowgorithm, name of data type )
  • 9digit ( starts with a number )
  • person_name ( contains special character underscore. This may be valid in some programming languages )
  • sqrt ( name of a built-in function name sqrt() )

Â