Starsstayforforevergo Starsstayforforevergo Computers and Technology Answered Which of these statements performs real number quotient division using type casting? double x = 35 % 10: double x = 35 / 10; double x = 35.0 / 10.0; double x = (double) 35 / 10; double x = 35.0 % 10.0;