Variables & Constants (Cambridge (CIE) IGCSE Computer Science)

Revision Note

Robert Hampton

Written by: Robert Hampton

Reviewed by: James Woodhouse

Variables & Constants

What is a variable?

  • A variable is an identifier that can change in the lifetime of a program

  • Identifiers should be:

    • In mixed case (Pascal case)

    • Only contain letters (A-Z, a-z)

    • Only contain digits (0-9)

    • Start with a capital letter and not a digit

  • A variable can be associated a datatype when it is declared

  • When a variable is declared, memory is allocated based on the data type indicated

Pseudocode

DECLARE <identifier> : <datatype>

DECLARE Age : INTEGER

DECLARE Price : REAL

DECLARE GameOver : BOOLEAN

Python

score = int() # whole number

cost = float() # decimal number

light = bool() # data can only have one or two values

What is a constant?

  • A constant is an identifier set once in the lifetime of a program

  • Constants are named in all uppercase characters

  • Constants aid the readability and maintainability

  • If a constant needs to be changed, it should only need to be altered in one place in the whole program

Pseudocode

CONSTANT <identifier> <value>

CONSTANT PI ← 3.142

CONSTANT PASSWORD ← "letmein"

CONSTANT HIGHSCORE ← 9999

Python

PI = 3.142

VAT = 0.20

PASSWORD = "letmein"

Last updated:

You've read 0 of your 10 free revision notes

Unlock more, it's free!

Join the 100,000+ Students that ❤️ Save My Exams

the (exam) results speak for themselves:

Did this page help you?

Robert Hampton

Author: Robert Hampton

Expertise: Computer Science Content Creator

Rob has over 16 years' experience teaching Computer Science and ICT at KS3 & GCSE levels. Rob has demonstrated strong leadership as Head of Department since 2012 and previously supported teacher development as a Specialist Leader of Education, empowering departments to excel in Computer Science. Beyond his tech expertise, Robert embraces the virtual world as an avid gamer, conquering digital battlefields when he's not coding.

James Woodhouse

Author: James Woodhouse

Expertise: Computer Science

James graduated from the University of Sunderland with a degree in ICT and Computing education. He has over 14 years of experience both teaching and leading in Computer Science, specialising in teaching GCSE and A-level. James has held various leadership roles, including Head of Computer Science and coordinator positions for Key Stage 3 and Key Stage 4. James has a keen interest in networking security and technologies aimed at preventing security breaches.