I. COMPUTER FUNDAMENTALS


A) Computer Hardware

A.1) Machine Model

A.2) Evolution

B) Computer Software

B.1) Programming & Languages

B.2) Classification of Softwares

B.3) Reusability

C) Data Representation

C.1) Objectives & Techniques

C.2) Data Types, Declaration & Round-off

C.3) Arrays

To declare an array, use the same syntax as for variables of the same type but add the number of elements between two parentheses; e.g. real*4 amount(100). Here too you can combine initialization with declaration: real*4 amount(100) / 100*5.0 /