AEAIT Task 2 Cheatsheet

Ultimate AIT Exam Cheatsheet

A concise, well-formatted revision sheet for AIT Task 2. HTML highlights are preserved using span tags and tables are converted to clean Markdown. Each point is on its own line for readability.


1. Data Organization & Best Practices

Definition: The process of sorting raw data into categories and arranging it logically so data is accessible, high-quality, and protected.

The three key systems

  • Day-to-Day System

    • Purpose: For everyday file creation and current projects.
    • Location: Local hard drive, USB, or cloud.
    • Structure: Organize by project and type (e.g., /Project/Images/Docs).
  • Archive System

    • Purpose: Store old or completed work that is important but not actively needed.
    • Benefit: Keeps the Day-to-Day system uncluttered and fast.
  • Backup System

    • Purpose: Redundant copies of Day-to-Day and Archive systems.
    • Goal: Protect against data loss (corruption, theft, hardware failure).

Best practices (How-to)

  • Systematic naming

    • Example: ProjectName_Type_YYYY-MM-DD_v01.ext (e.g., Science_LabReport_2025-11-25_v02.docx).
    • Use underscores instead of spaces.
    • Use ISO dates (YYYY-MM-DD).
    • Keep names descriptive.
  • Version control

    • Never overwrite raw data.
    • Always work on a copy or use version control (Git) for text/code.
    • Save new versions with incrementing numbers (v01, v02) or clear commit messages.
  • Data dictionary

    • Maintain a document that standardizes category names, abbreviations, and allowed values.
  • Electronic housekeeping

    • Schedule regular cleanups: remove duplicates, archive finished projects, update indexes.
  • Web rules

    • Keep index.html or index.php in web root folders.
    • Prefer plain text formats (.txt, .csv) for long-term archival to avoid obsolescence.

Metadata (data about data)

  • Definition: Data that provides information about other data.
  • Examples: Date created.
  • Examples: Camera model.
  • Examples: GPS location.
  • Examples: Author.
  • Examples: File size.
  • Uses: Search, sort, and filter files (e.g., “Find photos from Paris 2024”).
  • Tools: ExifTool (editing).
  • Tools: Hazel / DropIt (automation).

2. Graphics: Raster vs Vector

Raster (bitmap)

  • Building block: pixels (tiny coloured squares).
  • Scalability: Low — pixelates when enlarged.
  • File size: Typically larger (stores per-pixel data).
  • Best for: Photographs and images with complex colour gradients.
  • Conversion: Raster → Vector is hard (requires image tracing).

Vector

  • Building block: mathematical formulas (points, lines, curves).
  • Scalability: Infinite — no quality loss when resized.
  • File size: Often smaller (stores math/instructions).
  • Best for: Logos, fonts, icons, technical drawings.
  • Conversion: Vector → Raster is straightforward (export).

Key vocabulary

  • Pixel: Picture element — smallest unit of an image.
  • Bit depth: How many colours can be represented (1-bit = 2 colours; 24-bit ≈ 16.7M colours).
  • Anti-aliasing: Smooths jagged edges in raster images.
  • Rendering: Computing a drawable image from a model.

3. Comprehensive File Formats Guide

A compact reference for common formats and typical use cases.

ExtFull name / AcronymTypeKey notes / strengthsTypical use
.jpgJoint Photographic Experts Group (JPEG)RasterLossy compression; good for photos; no transparencyDigital photos, web images
.pngPortable Network Graphics (PNG)RasterLossless; supports transparency (alpha)Web graphics, logos with clear bg
.gifGraphics Interchange Format (GIF)RasterLossless (LZW); supports simple animation; 256-colour maxSimple animations, icons, memes
.tifTagged Image File Format (TIFF)RasterHigh-quality; often used for print/scanning; lossless optionsProfessional printing, archiving
.bmpBitmapRasterSimple/legacy; often uncompressedWindows icons, simple images
.psdPhotoshop DocumentRasterAdobe native; retains layers and historyEditing work-in-progress
.svgScalable Vector Graphics (SVG)VectorXML-based; interactive; scalableResponsive web graphics, vectors
.aiAdobe Illustrator (AI)VectorProprietary vector formatLogo and print design
.cgmComputer Graphics Metafile (CGM)VectorStandard for technical diagramsEngineering/technical graphics
.mp3MPEG-1 Audio Layer 3 (MP3)AudioLossy compression for audioStreaming, sharing
.wavWaveform Audio File Format (WAV)AudioUncompressed, lossless audioStudio recordings, editing
.wmaWindows Media Audio (WMA)AudioMicrosoft format; lossy and lossless variantsWindows ecosystem playback

4. Audio Deep Dive: WAV vs MP3

(Based on Image 5262.png)

Feature.wav (Waveform).mp3 (MPEG-1 Audio Layer 3)
TypeUncompressed (raw)Compressed (lossy)
CompressionLossless (no quality loss)Lossy (data removed)
QualityStudio / originalReduced depending on bitrate
File sizeLarge (~10 MB per minute typical)Small (~1 MB per minute typical)
Best forEditing, archiving, productionStreaming, distribution

5. Compression: Lossy vs Lossless

Lossy

  • Concept: Permanently deletes “unnecessary” data to reduce file size (e.g., sounds humans can’t hear, colours indistinguishable to the eye).
  • Pros: Huge space savings (often 5–10x smaller).
  • Cons: Irreversible quality loss; visible/audible artefacts if over-compressed.
  • Formats: JPEG, MP3, MP4, MPEG.

Lossless

  • Concept: Compresses data without deleting information (files can be fully restored).
  • Pros: 100% quality retention.
  • Cons: Larger file sizes than lossy.
  • Formats: PNG, GIF, TIFF, FLAC, ZIP.

6. Spreadsheet Functions: HLOOKUP & VLOOKUP

VLOOKUP (Vertical Lookup)

  • Definition: Searches for a value in the first column of a table array and returns a value in the same row from a specified column.
  • Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
  • When to use: When data is arranged in columns (e.g., ID in Column A and Price in Column B).

HLOOKUP (Horizontal Lookup)

  • Definition: Searches for a value in the first row of a table array and returns a value in the same column from a specified row.
  • Syntax: =HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])
  • When to use: When data is arranged in rows (headers on the top and data to the right).

Tip

  • Use INDEX/MATCH or XLOOKUP (if available) for more robust and flexible lookups.

7. Software Management & Licensing

Installation vs Update

  • Installation: Putting the software on the OS (via .exe, .dmg, or App Store).
  • Update: Post-install improvements — primarily for Security Patches, but also feature and bug fixes.

Software license types

LicenseDefinitionExamples
ProprietaryClosed source. Owned by a company; paid useWindows, Adobe CC, MS Office
FreewareFree to use; closed source (no modifications)Chrome, Skype, Adobe Reader
Open sourceSource code is public; can modify/redistributeLinux, Firefox, VLC, Moodle
SharewareProprietary software distributed as a trialVarious trial applications

Types of shareware

  • Demoware: Trial with limited time or features.
  • Adware: Free but displays advertisements.
  • Nagware: Full access but persistent payment prompts.
  • Donationware: Free, asks for voluntary donations.
  • Freemium: Basic features free; pay for premium features.

8. “For You To Do” — Model Answers

Use these model answers to respond to revision questions.

Q1: Explain your system of data organisation

“My data organisation strategy relies on three distinct systems:

  • Day-to-Day System: I use a structured folder hierarchy on my laptop (e.g., /School/Year12/AIT) for current assignments.
  • Archive System: At the end of every term, I move completed projects to an external hard drive. This keeps my working device fast.
  • Backup System: I perform a weekly mirror backup of both systems to the cloud to prevent data loss from hardware failure.”

Q2: Explain how a large organisation would organise their data

“A large organisation would use a Data Dictionary to ensure standard naming conventions.

  • They would use server-based storage with strict permissions (e.g., only HR can see HR files).
  • They would separate live servers from archive storage and keep automated, versioned backups.
  • They would implement role-based access control and auditing.”

Q3: What is the purpose of data organisation

“The purpose is to ensure data is accessible to authorised people, accurate for decision-making (via version control), and secure from loss or misuse.

  • It improves productivity and reduces errors.”

Quick printable summary

  • Use three systems: Day-to-Day, Archive, Backup.
  • File naming: Project_Type_YYYY-MM-DD_v01.ext.
  • Never overwrite raw data; use versioning.
  • Raster = pixels (photos); Vector = math (logos).
  • JPEG = lossy photos; PNG = lossless + transparency; SVG = scalable vector.
  • WAV = lossless large audio; MP3 = lossy small audio.
  • Prefer INDEX/MATCH or XLOOKUP over VLOOKUP.
  • Keep software updated for security; understand license types.