hearteye6023 hearteye6023 20-12-2022 Computers and Technology contestada consider the following code segment. int count = 0; int number = 20; while (number > 0) { number = number / 2; count ; } what will be the value of count after executing the code segment?