Programming Paradigms

Get Started. It's Free
or sign up with your email address
Programming Paradigms by Mind Map: Programming Paradigms

1. Object-Oriented

1.1. Formulates programs as a series of objects and methods that interact to perform a specific task.

1.2. Languages include: Smalltalk, C++, Java, Scratch

1.3. Using the object-oriented approach, programmers might be able to visualize the solutions to problems more easily.

1.4. One disadvantage is that they tend to require more memory and processing resources.

2. Functional

2.1. Emphasizes the evaluation of expressions, called functions.

2.2. Languages include: LISP,Scheme, Haskell

2.3. Has a reputation for providing minimal input and output capabilities.

2.4. Offer a highly effective programming environment for problems that involve words, concepts, and complex logic.

2.5. Best useful with problems involving calculations.

3. Event-Driven

3.1. Focuses on selecting user interface elements and defining even-handling routines that are triggered by various mouse or keyboard activities.

3.2. Languages include: Visual Basic, C++

3.3. Can reduce development time and simplify the entire programming process.

4. Procedural

4.1. Emphasizes linear steps that provide the computer with instructions on how to solve a problem or carry out a task.

4.2. Languages include: BASIC, Pascal, COBOL, Fortran, Ada

4.3. Best used for problems that can be solved by using a step-by-step algorithm.

4.4. Tend to produce programs that run quickly and use system resources more efficiently.

4.5. It does not fit gracefully with certain problems such as those with very complex algorithms.

5. Declarative

5.1. Focuses on the use of facts and rules to describe a problem.

5.2. Languages include: Prolog

5.3. Best used for problems that involves calculations.

5.4. They offer a great deal of flexibility for querying a set of facts and rules.