Posts

prigramming language 2

PROGRAMMING LANGUAGE PARADIGM LANGUAGE A paradigm, is a way in which computer language looks at the problen to be solved.  * In other word, guides in problem solving within a framework and give solution * Type of paradigm          > Procedural        > Object oriented        > Logic  PROCEDURAL PARADIGM - A way of approach in problem solving based on module or function. - Example of language : C OBJECT ORIENTED PARADIGM - Based on the concept of an object that combine both data and the function into a single unit. - Example of language : Pascal, FORTAN, COBOL, Java, C++ LOGIC PARADIGM - Based on the idea of answering question through search for solution from a knowlegde base. - Example of language : Prolog TRANSLATOR Any program that is not written in machine language has to be translate in machine language before it is executed by the computer. * Type of translator       > Compiler - translates the entire source program into machine language befo

PROGRAMMING

Image
WHAT IS COMPUTER PROGRAMMING? Computer programming is the process of writing instructions that get executed by computers. The instructions, also known as code, are written in a programming language which the computer can understand and use to perform a task or solve a problem. Basic computer programming involves the analysis of a problem and development of a logical sequence of instructions to solve it. There can be numerous paths to a solution and the computer programmer seeks to design and code that which is most efficient. Among the programmer’s tasks are understanding requirements, determining the right programming language to use, designing or architecting the solution, coding, testing, debugging and writing documentation so that the solution can be easily understood by other programmers. Computer programming is at the heart of computer science. It is the implementation portion of software development, application development and software engineering efforts, tra