COMPUTER PROGRAMMING FUNDAMENTALS
WHAT IS PROGRAMMING
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
procedural paradigm
|
|
functional paradigm
|
|
object-oriented paradigm
|
|
None of the above
|
Detailed explanation-1: -Functional programming is notable for its ability to efficiently parallelize pure functions. Code for data analysis workflows and tasks is easier to analyze, test, and maintain using the functional programming paradigm. Due to its pure nature, FP is ideally suited for analyzing extensive data sets and machine learning.
Detailed explanation-2: -Functional programming is a paradigm of building computer programs using expressions and functions without mutating state and data. By respecting these restrictions, functional programming aims to write code that is clearer to understand and more bug resistant.
Detailed explanation-3: -Imperative Programming It’s called “imperative” because as programmers we dictate exactly what the computer has to do, in a very specific way. Imperative programming focuses on describing how a program operates, step by step.
Detailed explanation-4: -Functional Programming is a paradigm that evaluates mathematical functions, avoiding state and mutable26 data.