IDNLearn.com makes it easy to get reliable answers from experts and enthusiasts alike. Ask your questions and receive comprehensive and trustworthy answers from our experienced community of professionals.
Loren Truesdale
List Operations
Jan 06, 8:31:34 AM
Determine what is printed by the following code.
1
2.
3
4
values - [9, 11, 0, 12, 9, 4]
fred - 0
FOR EACH value IN values
{
if( value = 9)
{
fred - fred + value
5
on
6
7
8
9
3
DISPLAY( fred)
10
