Page 62 - TP_Prime_V2.2_Class7
P. 62
Information processing involves acquiring, storing, analysing, retrieving, and displaying
data. Just like a computer, our brain acquires, processes, and stores information. Effective
information processing is crucial for writing an algorithm.
The left and right brain of an human process the data as follows:
Left Brain Right Brain
Prime (Ver. 2.2)-VII • Number skills • 3D shapes ALGORITHMIC INTELLIGENCE
Left side of body control
Right side of body control
• Music/Art awareness
• Math/Scientific skills
• Intuition
• Written language
• Creativity
• Spoken language
• Objectivity
• Subjectivity
• Analytical • Imagination
• Synthesizing
• Logic • Emotion
• Reasoning • Face recognition
60 61
Binary Representation of Information
Binary code is the most basic form of data that a computer can directly interpret.
Computers use binary code, composed of 1s and 0s, to store and process data. These 1s
and 0s represent electrical signals: ON for 1 and OFF for 0. For instance, the number 5 is
stored as 0101 in binary.
Binary numbers can also represent text characters through the American Standard
Code for Information Interchange (ASCII). For example, the binary code for the ASCII
uppercase letter 'A' is 1000001.
Conditions in a Program
The program executes the statements written inside the IF block when the condition
is True. If the condition is False, Start
the statements written inside the
else block will be executed. A block
refers to a section of code that is IF (Condition)
grouped together. True to be checked False
Statements inside IF Statements inside ELSE
block will execute block will execute
Stop

