| A reminder... A record consists of a number of
fields.  
 A  field consists of a  single data item and these
may be of different types.  
 For example a record may consist of four fields : 
    
        | Field
        name | 
        Field
        type | 
     
    
        | PupilID | 
        Integer | 
     
    
        | Name | 
        String | 
     
    
        | Form | 
        String | 
     
    
        | ExamAverage | 
        Real | 
     
 
       
      When used in programs, the name and type
      of each field will need to be declared.
 
       
      	  |