Bird
Raised Fist0

Consider this folder structure:

hard🚀 Application Q9 of Q15
Intro to Computing - How Files and Folders Organize Data
Consider this folder structure:
Root/
Data/
2023/
report.csv
2024/
summary.csv

From the 2023 folder, what is the relative path to access summary.csv in 2024?
A..\2024\summary.csv
B2024\summary.csv
C..\Data\2024\summary.csv
D..\..\2024\summary.csv
Step-by-Step Solution
Solution:
  1. Step 1: Understand folder levels

    2023 and 2024 are sibling folders inside Data.
  2. Step 2: Build relative path

    From 2023, go up one level (..), then into 2024, then file summary.csv.
  3. Final Answer:

    ..\2024\summary.csv -> Option A
  4. Quick Check:

    Relative path from 2023 to summary.csv = ..\2024\summary.csv [OK]
Quick Trick: Go up to parent, then down to sibling folder [OK]
Common Mistakes:
MISTAKES
  • Skipping .. to go up
  • Using too many ..
  • Confusing folder names

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Intro to Computing Quizzes