2.4 - Types of Programming language Flashcards
1
Q
What are imperative programming paradigms?
A
- approach to using a programming language to solve a problem that uses code that clearly specifies the actions to be performed
2
Q
What is procedural programming?
A
- widely used paradigms as it can be applied to a range of problems
- easy to write and interpret
- written as a sequence of instructions
- instructions carried out step by step
3
Q
What is object-oriented programming?
A
- suited to problems which can be broken down into reusable components with similar characteristics
- based on objects formed from classes which have attributes and methods
- focuses on making programs that are reusable and easy to update and maintain
4
Q
What is declarative programming?
A
- states the desired result and the programming language determines how best to obtain the result
- details about how result is obtained are abstracted from the user
5
Q
What is functional programming?
A
- functions form the core of the program
- function calls are often combined within each other
- closely linked to mathematics
6
Q
What is logic programming?
A
- a set of facts and rules based on the problem is defined
- queries are used to find answers to problems
7
Q
A