Using these variables create a coding system that could be u
Using these variables create a coding system that could be used to input data.
Variable
Code
Case number
Gender
Month of birth
Marital status
Annual income
Suburb
Highest academic qualification
For example : Marital status code = S = Single, M = Married, D = Divorced, P = Separated
| Variable | Code |
|---|---|
| Case number | |
| Gender | |
| Month of birth | |
| Marital status | |
| Annual income | |
| Suburb | |
| Highest academic qualification |
Solution
Case number n = auto intrement value
Gender code = M =Male, F = Female
Month of birth code = 1 = January,2=February,3=March,4=April,5=May,6=June,7=July,8=August,9=September,10=October,11=November,12=December
Marital status code=S=Single,M=Married,D=Divorced,P=Separated
Annual income code=A=(salary < 1,00,000), B=(salary > 1,00,000 and salary<2,00,000),C=(salary > 2,00,000 and salary<3,00,000),D=(salary > 3,00,000 and salary<4,00,000) and so on
Suburb code=Postal code of the suburb
Highest academic qualifications code = BE = Bachelor of engineering,MS=Masters in Science, etc
