Given the statement below what is the value of j j 7 For co
Given the statement below, what is the value of j? j = 7 For count = 1 To 3 j = j + 4 Next count
Solution
Answer :
Finally j is 19
when count=1 --> j=7+4 --> 11
when count=2 --> j=11+4 --> 15
when count=9 --> j=15+4 --> 19
