Tayblux6781 Tayblux6781 07-03-2024 Computers and Technology contestada How would Scheme implement a function such as: `for (i = 1; i < 100, i) sum = sum + i;` a) With a repeat-until loop. b) With a for-loop. c) With recursion. d) With a while-loop.