Ask Question
3 April, 18:38

Onsider the following pseudocode function. function Crunch (x R) if x ≥ 100 then return x/100 else return x + Crunch (10 · x) (a) Compute Crunch (4). Crunch (4) = (b) What happens if you try to compute Crunch (-23) ? What does this suggest about an appropriate precondition for this function?

+1
Answers (1)
  1. 3 April, 19:03
    0
    A) Crunch (4) = 4 + Crunch (40)

    ... = 4 + 40 + Crunch (400)

    ... = 4 + 40 + 400/4

    ... = 48

    b) Crunch (-23) = - 23 + Crunch (-230)

    ... = - 23 - 230 + Crunch (-2300)

    ... terminates with overflow or memory exception

    An appropriate precondition is x ≥ 0.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Onsider the following pseudocode function. function Crunch (x R) if x ≥ 100 then return x/100 else return x + Crunch (10 · x) (a) Compute ...” in 📘 Mathematics if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers