Monthly Archives: February 2017


CLASSES OF ALGORITHM

ALGORITHM An algorithm is any special method of solving a certain kind of problem or an idea behind the computer programs. More specifically , Algorithm refers to a precise method useable by a computer for the solution of a particular computational problem. CLASSES OF ALGORITHM  Algorithms can be classified depending […]


CONCEPT OF POINTERS IN C PROGRAMMING

INTRODUCTION TO POINTERS Pointers are extremely flexible and powerful tool for programming over a wide range of applications. The use of pointers offers a great degree of flexibility for manipulating data in programs and quicker and memory efficient. Most of the learners feel that understanding pointer is a very daunting […]


WHAT IS INTERPRETER IN PROGRAMMING?

INTERPRETERS An interpreter is another type of program translator used for higher level languages into machine level language. It takes one statement of higher level language and translate it into machine language which is immediately execute it. Translation and execution are carried out for each statement. It differs from compiler, […]


WHAT IS COMPILER IN PROGRAMMING?

COMPILERS A compiler is a translating program that translates the instruction of a high level language into machine level language. A compiler is so called because it compiles a set of machine language instruction for every program instruction of a high level language. A program is written by a programmer […]


CONCEPT OF STACK

INTRODUCTION TO STACK Stack is one of the most commonly used linear data structure of variable size. In linear data structure discussed so far i.e array , insertion and deletion of an element can take place at any position of the array but in case of stack, the insertion and […]


qqq

Monoalphabetic Substitution Ciphers

  Monoalphabetic Substitution Cipher: It also known as substitution cipher. Replacement of alphabets or digits are fixed for each letter. For example: Plain text : nikhilarora Cipher text: OJLIMBSPSB In the above example, the value of  ‘a’ is fixed for every time as ‘B’ and every alphabet is fixed for separate […]