Home /
Expert Answers /
Computer Science /
python-programming-assume-you-have-a-computer-with-the-following-state-list-contains-the-numbers-pa859
(Solved): (python programming) Assume you have a computer with the following state: LIST contains the numbers: ...
(python programming)
Assume you have a computer with the following state: LIST contains the numbers: \( 1,7,9,3,8 \) \( \mathrm{NUM}=0 \) FOUND_NUM = 0 1. If the value in the current position (start at first value) in LIST is greater than NUM, move to step 2, otherwise skip to 3 2. Store the value of the current position in LIST in NUM 3. Move to the next value in the list 4. If the current position in LIST is less than the length of the list (i.e. the number of elements in LIST), go to step 1 5. Copy the value in NUM to FOUND_NUM. What is FOUND_NUM equal to once the code finishes executing?