Features of OOP
Data abstraction: Abstraction refers to give the general view. We represent thing without going into the background details. Class contains abstract data members such as size, weight, height and function to operateRead More…
In object-oriented programming we divide program into multiple object. “An Object is a thing in real world which has certain properties and method.” It may be any place, person, bank account, billRead More…
Programming in the high-level languages such as COBOL, FORTRAN, C, etc. is known as procedure-oriented programming. Procedure-oriented programming basically contains group of instructions known as function. There are multiple functions into theRead More…
A data type specify type of the data type Data types are require storing different type of value for operation purpose. C- Language has the following basic data types. [1] int (Integer):Read More…
Every C program follows block structure. It is written as a collection of function also known as sub-routine. The basic structure of a C program is as follow: [1] Documentation Section: ThisRead More…
C – Language includes the following character set. [1] Alphabets: a to z lower case A to Z upper case. [2] Digits:Digits from 0 to 9 [3] Special characters: Special Characters MeaningRead More…
A computer programming started in 1960 with the language ALGOL. The concept of block structure programming was derived from the ALGOL language. It was developed by International Group in 1960. In 1967Read More…
Translator It is a computer program that translates high level programming language code into machine code. Three type of translate programs are available. [1] Interpreter: An Interpreter is a computer program thatRead More…
Programming languages can be divided into the following three types. [1] Machine language: Machine language is the only language that can be understood by the computer. It contains two symbols,0 and 1.Read More…
A Flowchart is a graphical representation of a process. It uses some predefined symbols to represent a process in simple and understandable manner. Flowchart Symbols: [1] Start/Stop: An oval or rounded rectangleRead More…