COMPUTER PROGRAMMING FUNDAMENTALS
WHAT IS PROGRAMMING
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
logic, object oriented
|
|
functional, imperative
|
|
imperative, logic
|
|
logic, functional
|
Detailed explanation-1: -Imperative programming paradigm You give the computer little orders to do and it does them one at a time and reports back. The paradigm consists of several statements, and after the execution of all of them, the result is stored. It’s about writing a list of instructions to tell the computer what to do step by step.
Detailed explanation-2: -One of the most popular programming paradigms is object-oriented programming (OOP). The core concept of OOP is to separate concerns into entities which are coded as objects. Each entity will group a given set of information (properties) and actions (methods) that can be performed by the entity.
Detailed explanation-3: -Procedural programming is a programming paradigm, derived from imperative programming, based on the concept of the procedure call. Procedures (a type of routine or subroutine) simply contain a series of computational steps to be carried out.
Detailed explanation-4: -Object-oriented programming (OOP) is a software development paradigm which encourages sculpting desired entities with properties and methods in named classes to create applications. OOP relies on two major concepts: the class and the object-these foundational concepts applied in code enable us to build applications.