Guertin7038 Guertin7038 16-01-2019 Computers and Technology contestada Evaluate the following code segment. What is the value of count after execution? int count = 1; for(int outer = 0; outer < 4; outer++) for(int inner = 1; inner < 3; inner++) count++; 1 3 9 12 13