Killakyle5326 Killakyle5326 10-12-2022 Computers and Technology contestada given the following while loop, what is the value assigned to variable z for the given values of variables a = 1, b = 1 and c = 0? mult = 0 while a: mult = b * a if mult > c: break a = a + 1 z = a