Skip to main content
Northern IrelandDigital TechnologySyllabus dot point

What is the difference between data and information, and how is data quality protected on entry?

The distinction between data, information and knowledge, data types, and the validation and verification techniques that protect data quality.

A CCEA A-Level Digital Technology answer on data and information: the distinction between data, information and knowledge, common data types, and the validation and verification techniques that protect data quality on entry.

Generated by Claude Opus 4.810 min answer

Reviewed by: AI editorial process; not yet individually human-reviewed

Have a quick question? Jump to the Q&A page

Jump to a section
  1. What this dot point is asking
  2. Data, information and knowledge
  3. Data types
  4. Validation and verification
  5. Why data quality matters
  6. Try this

What this dot point is asking

CCEA wants you to distinguish data, information and knowledge, to recognise common data types, and to describe the validation and verification techniques that protect data quality when it is entered. Poor-quality data produces poor information, so these checks underpin every system that stores data.

Data, information and knowledge

The number 37 is data; "the noon temperature was 37 degrees Celsius" is information; "37 degrees is dangerously hot, so the greenhouse vents should open" is knowledge applied to act. Data becomes information through processing: selecting, sorting, summarising, calculating, or placing it in context.

Data types

A data type defines the kind of value a field holds and what operations are valid on it. Common types are integer (whole numbers), real or float (numbers with a fractional part), text or string (characters), Boolean (true or false) and date/time. Choosing the right type saves storage, enables the correct operations (you can add integers but not text), and supports validation.

Validation and verification

Common validation checks include:

  • Range check. The value lies within set limits (a month is 1 to 12).
  • Format (picture) check. The value matches a pattern (a date as DD/MM/YYYY).
  • Presence check. A required field is not left blank.
  • Type check. The data is the right kind (a number where a number is expected).
  • Length check. The value has an allowed number of characters (a PIN is exactly four digits).
  • Check digit. An extra digit calculated from the others detects entry errors (as on barcodes and bank numbers).

Verification is done by double entry (the same data entered twice and compared) or a visual check (proofreading) against the source document.

Why data quality matters

Information is only as good as the data behind it ("garbage in, garbage out"). Validation stops obviously wrong data at the point of entry, and verification catches accurate-looking but mistyped data, together protecting the quality of the information the system produces.

Try this

Q1. State which check ensures a required field is not left blank. [1 mark]

  • Cue. A presence check.

Q2. Give one example each of an integer and a Boolean data value. [2 marks]

  • Cue. Integer: a whole number such as 42. Boolean: true or false (for example, "subscribed = true").

Q3. Explain why a value can pass a validation check but still be incorrect. [2 marks]

  • Cue. Validation only tests whether the data is reasonable against rules, so a wrong value that still falls within the rules (for example a valid but mistyped date) is accepted; only verification against the source catches it.

Exam-style practice questions

Practice questions written in the style of CCEA exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.

CCEA AS 24 marksDistinguish between data and information, and explain how data becomes information.
Show worked answer →

Define both and describe the processing that links them.

Data is raw facts and figures without context, for example the number 37 or the value "red". On its own it has no meaning. Information is data that has been processed, organised or given context so that it is meaningful and useful, for example "the temperature at noon was 37 degrees Celsius".

Data becomes information when it is processed: selected, sorted, summarised, calculated with, or placed in a context that gives it meaning. A strong answer also notes knowledge as the further stage, where understanding is applied to information to make decisions.

Markers reward the raw-versus-processed distinction, an example of each, and a correct description of the processing that turns data into information.

CCEA AS 25 marksExplain the difference between validation and verification, and describe two validation checks.
Show worked answer →

Separate the two ideas first, then detail two named validation checks.

Validation checks that entered data is reasonable and follows defined rules; it cannot guarantee the data is correct, only that it is plausible. Verification checks that data has been entered or transferred accurately, that it matches the source, for example by double entry or a visual proofread.

Two validation checks: a range check ensures a value lies within set limits (for example a month between 1 and 12). A format (or picture) check ensures data matches a pattern (for example a postcode or a date as DD/MM/YYYY). Other valid checks include presence (a required field is not blank), type (data is the right kind), length (the right number of characters) and a check digit (an extra digit calculated from the others, as on a barcode).

Markers award marks for the validation-versus-verification distinction and for two correctly named and described validation checks. Calling a range check "verification" loses marks.

Related dot points

Sources & how we know this