COMP 305: Object-Oriented Software Design

University of San Diego, Fall 2025

Declarative Programming

Declarative programming focuses on describing what you want to achieve, rather than specifying how to achieve it step by step.

📋 What, Not How

Describe the desired outcome, not the steps to get there.

🎨 CSS & HTML

Classic examples of declarative languages.

🗃️ SQL Queries

Describe what data you want, not how to retrieve it.

⚛️ React JSX

Declare UI structure and let the framework handle updates.