Final exam Problem 1 My name is Dean Brock Problem 3 cword[2] is 49 cword+2 is "11" ++whole is 11 whole++ is 10 whole / fract is 4.00 whole * fract is 25.00 whole = fract is 2 fract = whole is 10.00 whole-- / 5 is 2 --whole == 10 || whole is 1 whole += -10 is 0 fract +- -5 is 7.50 1 && whole++ ? whole : 0 is 11 1 || whole++ ? whole : 0 is 10 strlen(cword) is 4 strlen(&cword[2]) is 2 cword[4] is 0 strstr(cword, "12") == NULL is 1 strchr(cword, '0') is "011" !isalpha(*cword) is 1 * ++ cword is 48 * cword ++ is 50 5 / 3 is 1 5 % 3 is 2 5.0 / 3 is 1.67 5 / 3 * 5.0 is 5.00 5 + 4 * 2 is 13 5 * 4 + 2 is 22 4 * 2 / 4 is 2 4 / 2 * 4 is 8 (int) 3.2 + 2 is 5 5.2 > 5 is 1 5.2 < 5.0 is 0 (2, 3) + 5 is 8 6 > 5 > 4 is 0 4 && 5 is 1 5 == (4 || 5) is 0 ! 5 is 0 1 && 0 + 1 is 1 1 + 0 && 1 is 1 (5 || 7) && ! (5 || 7) is 0 '5' - '3' is 2 Problem 4 x is [ 555.556] x is [56%] x is [56%] Problem 5 loop 1 6 loop 2 0 1 3 loop 3 5 2 loop 4 E E 0 loop 5 -2 -1 loop 6 0 0 0 0 Problem 6 222 333 555 222 334 668 222 336 671 227 336 671 227 337 671 227 338 2 Problem 7 Enter some input for Problem 7A Average < median is 6.821 Average > median is 1014.150 Problem 8 Exam example possibleRows is 1 gridRow is 5 gridColumn is 8 No match possibleRows is 0 Two matches possibleRows is 2 Problem 9 Original string: " a little off the sides " Modified string: "a little off the sides" Original string: "Charlotte Parker is going to Charlotte, NC, to visit UNC Charlotte." Modified string: "Charlotte Parker is going to Asheville, NC, to visit UNC Asheville."