SELF TEST
Each of the following expressions is wrong. Rewrite each using correct Pascal, in the space provided.
	Firstletter := A;                       Firstletter := 'A';

	StartCount := Initial := 0;             StartCount := 0;
        	                                Initial := 0;

	Taxrate := 5%;                          Taxrate := 0.05;

	Total := 5 plus 7;                      Total := 5 + 7;

	Effeciency := .35;                      Effeciency := 0.35;



Copyright B Brown/P Henry/CIT, 1988-1997. All rights reserved.