Which of the following variables below, if any, are equivale…

Which of the following variables below, if any, are equivalent to the following alphanumeric literals?  double foo = 7 / (double) 2;double bar = 7 / 2;double baz = (double) (7 / 2); int cake = (int) foo; double jam = (double) 14 / 4; foo [answer1] equivalent to 3.5 bar [answer2] equivalent to 3.5 baz [answer3] equivalent to 3.5 cake [answer4] equivalent to 4 jam [answer5] equivalent to 3.5