> For the complete documentation index, see [llms.txt](https://dev-lambda.gitbook.io/tech-interview-cs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev-lambda.gitbook.io/tech-interview-cs/programingparadigm/undefined.md).

# 프로그래밍 패러다임 개요

## 프로그래밍 패러다임 <a href="#undefined" id="undefined"></a>

* 프로그래머에게 프로그래밍의 관점을 갖게 해주는 역할을 하는 개발 방법론
  * ex) 객체지향 프로그래밍은 개발자들이 프로그램을 상호 작용하는 개체들의 집합으로 볼수있게 한다.
  * ex) 함수형 프로그래밍은 상태 값을 지니지 않는 함수 값들의 연속으로 생각 할 수 있게 해준다.
* 어떤 언어는 특정한 패러다임을 지원하기도 한다.
  * jdk 1.8 이전의 자바는 객체지향 프로그래밍을 지원
  * 하스켈은 함수형 프로그래밍 지원
  * 여러 패러다임 지원: C++, 파이썬 ,JS

{% embed url="<https://velog.velcdn.com/images%2Fblackb0x%2Fpost%2F8b101ee9-7719-4dcc-be0f-fb138b713391%2Fimage.png>" %}
[선언형, 명령형 프로그래밍 (velog.io)](https://velog.io/@blackb0x/%EC%84%A0%EC%96%B8%ED%98%95-%EB%AA%85%EB%A0%B9%ED%98%95-%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D)
{% endembed %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://dev-lambda.gitbook.io/tech-interview-cs/programingparadigm/undefined.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
