Featured Article

Control Statements in C

Control statements in C are used to control the flow of program execution based on certain conditions. There are three main types of control statements in C: conditional statements, loop statements, and jump statements. 1. Conditional Statements: Conditional statements allow a program to make decisions based on whether a certain condition is true or false. The most common… Read More »

Featured Article

Characteristics or features of an Algorithm

Algorithm is a step-by-step procedure which is used to solve a problem. It is important Computer Science and Software Engineering. We can improve our program efficiency in cost and time by choosing appropriate algorithm and data structures for a particular program. An algorithm is a sequence of computational steps that transform the input into the output. Definition of… Read More »

Differences between Procedural and Object Oriented Programming

1. Procedural Programming Procedural Programming is based on structured programming. It has procedures which are sequences of computational steps. These procedures can be called at various points during program execution. Languages used in Procedural Programming: BASIC, FORTRAN, Pascal, ALGOL, COBOL and C. 2. Object-Oriented Programming Object-oriented programming is based on objects. Objects have data (attributes) and code (methods).… Read More »

Difference between Compiler and Interpreter

1. Compiler Compiler takes high-level human readable program and convert into low-level machine readable program. Compiler checks for any error for syntax and some semantic in the code. 2. Interpreter Interpreter takes high-level human readable program and convert into comprehensible program. It convert high-level program into intermediate code. It contains pre-compiled code, source code, etc. Difference between Compiler… Read More »