# Programming paradigm > 프로그래밍 패러다임 프로그래밍 <패러다임> ## Functional vs. Imperative 에서 은 [Functional programming](https://wiki.g15e.com/pages/Functional%20programming.txt)과 [Imperative programming](https://wiki.g15e.com/pages/Imperative%20programming.txt)의 차이를 이렇게 설명: > Generally speaking, however, functional programming can be viewed as a style of programming in which the basic method of computation is the application of functions to arguments. In turn, a functional programming language is one that supports and encourages the functional style…. In general, programming languages such as [Java](https://wiki.g15e.com/pages/Java.txt) in which the basic method of computation is changing stored values are called imperative languages, because programs in such languages are constructed from imperative instructions that specify precisely how the computation should proceed.