Determine how the following variables should be declared in order to maintain good memory usage by the compiler.
a) the number of students in a class b) the distance to the moon c) last month's checking account balance d) a counter used to count the number of lines in a text file e) number of people living in the US f) the temperature used in a chemistry formula
a) Show how to declare Real as a synonym for float (float and Real can be used interchangeably).
b) Show how to declare the following constants using an enum statement: WINTER =0, SPRING = 1, SUMMER = 2 and FALL = 3.
{ Script }
Write code to print out the id number of the second customer included in the allCustomers array as described in exercise 6.