Big Data

4.11 (12 questions). Public Notes: AQA's A Level Computer Science

State the three characteristic properties of Big Data.

Volume, Velocity and Variety.

Explain what is meant when big data is said to have a large volume.

  1. Too much data to fit on one server computer, even with many hard drives
  2. Data must be distributed across multiple servers, each with many hard drives.

Explain what is meant when big data is said to have a large velocity.

  1. New data is created rapidly.
  2. Data sets can frequently change each millisecond.

Explain what is meant when big data is said to have a wide variety.

Data is in multiple formats, such as photos, videos and text and unstructured.

Give three examples of big data.

  1. Video surveillance.
  2. Traffic data.
  3. Bank transaction monitoring.

Explain why relational databases are not suited for analysing big data.

  1. Big data is unstructured, so cannot fit within rigid row, column format of a relational database.
  2. Big data is hosted across many server computers, traditional relational database management systems will slow down greatly if scaled with many machines.

State three features of functional programming languages, which make it ideal for processing functional data.

  1. Immutable data structures.
  2. Statelessness.
  3. Higher order functions.

Explain what is meant by a higher order function in functional programming.

A function which takes functions as its input and/ or outputs a function.

Explain what is meant by statelessness in functional programming

A function call will always return the same result, no side effects.

Explain what is meant by immutable data structures in functional programming.

Data structures, such as arrays, lists, floats cannot be changed during execution, only new data structures made from existing data structures.

Explain why the three essential features of the functional programming paradigm make it ideal for processing big data.

  1. Allows for the distributed, parallel processing, where many computers perform operations on the same data set, to provide a very quick response.
  2. Makes it easier to write correct code, which is already optimised for distributed parallel processing.

State the three essential features of the fact based model.

  1. No index, new data appended with timestamp.
  2. Each fact captures a single piece of information.
  3. Each fact is immutable (no risk of losing data due to human error)