Popcorn Hacks Answers

1. Which image format is best for logos and transparency?

Answer: PNG
PNG supports transparency and uses lossless compression, making it ideal for logos and graphics with sharp edges.

2. Which format loses quality to make the file size smaller?

Answer: JPG
JPG uses lossy compression, which reduces file size at the cost of some image quality.

3. Which format is used for simple animations, like memes?

Answer: GIF
GIF supports simple animations and limited transparency, and is commonly used for memes.

4. Decode This! What does this Base64 string decode to? U1Q=

Answer: ST
Explanation:

  • Binary equivalent of “U1Q=” is split into 6-bit chunks.
  • These map to ASCII characters:
    • U → 20
    • 1 → 53
    • Q → 16
    • Together they represent the string “ST”.

Homework Hack 1: Mood Board with Hex Colors

<!DOCTYPE html>

Mood Board

My Mood Board

#FF6F61 – Energetic
#6B5B95 – Calm
#88B04B – Grounded
#F7CAC9 – Soft
#92A8D1 – Cool

<!DOCTYPE html>

Mood Board

My Mood Board

#FF6F61 – Energetic
#6B5B95 – Calm
#88B04B – Grounded
#F7CAC9 – Soft
#92A8D1 – Cool

Homework Hack 2: Embed a Profile Pic as Base64

<!DOCTYPE html>

My Base64 Image

My Profile Pic in Base64

Profile Pic

<!DOCTYPE html>

My Base64 Image

My Profile Pic in Base64

Profile Pic