Coding terms every programmer should know

https://f002.backblazeb2.com/b2api/v1/b2_download_file_by_id?fileId=4_za8a2358db1d7f91b68b30916_f1046a998a7efb530_d20190719_m121638_c002_v0001124_t0033

There are some important coding terms that every programmer must hear in their daily rountine

1)Pseudocode

It is a high-level description of a computer program or another algorithm. It uses conventions of a normal programming language but it is intended for human reading purpose rather than machine reading.

2)Refactoring

Refactoring is the process of restructuring existing computer code without changing its external behavior, it is intended to improve nonfunctional attributes of the software.

3)Callback

A callback function is any executable code passed as an argument to the other code that is expected to call back the function particular time.

4)Framework

It is an abstraction in which software providing generic functionality can be selectively changed by additional user-written code. It also provides a standard way to build and deploy the application.

5)IDE

IDE stands for Integrated Development Environment. It is a software application that provides facilities to programmers for software development. An IDE mainly consists of a code editor, build automation tools and a debugger.

6)SDK

SDK stands for Software Development Kit which is a collection of software development tools that allows the creation of applications for a certain software package, software framework, hardware platform and etc. 

Leave a Reply