Looking for Алгоритмізація та програмування test answers and solutions? Browse our comprehensive collection of verified answers for Алгоритмізація та програмування at vns.lpnu.ua.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Якого значення набуде змінна b після виконання коду при а=9
if a < 5:
b = a + 1
elif a < 10:
b = a * 2
else:
b = a – 1
Якого значення набуде змінна s після виконання коду
s = 0
i = 1
while i <= 2:
s *= i
i += 2