InterviewSolution
| 1. |
What Is A Record Datatype? |
|
Answer» A RECORD is a collection of data items, which differ from each in other in datatype, but are logically related. For example, an EMPLOYEE record with name, age, address, and telephone NUMBER. These are all part of employee record but have different datatypes. We have defined the record type by the name emp_record_type and then declared a record, emp_record, of that type. A RECORD is a collection of data items, which differ from each in other in datatype, but are logically related. For example, an employee record with name, age, address, and telephone number. These are all part of employee record but have different datatypes. We have defined the record type by the name emp_record_type and then declared a record, emp_record, of that type. |
|