SELF TEST 4
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;

	Efficiency := .35;                      Efficiency := 0.35;



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