Modify example program 1 to average the values: 33, 47 and 29 instead of the given data.

Replace LET numl =10
Replace LET num2 =15
Replace LET num3 = 20

with LET numl = 33
with LET num2 = 47
with LET num3 = 29

The modified program is:
LET numl =33
LET num2 = 47
LET num3 = 29
LET sum = numl + num2 + num3
LET average = sum 13
OUTPUT average

Computer Science & Information Technology

You might also like to view...

__________ files contain records that must be processed in the order in which they were created.

Fill in the blank(s) with correct word

Computer Science & Information Technology

In a(n) many-to-many relationship, a record in one table can be related to several records in another table and vice versa.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology