Michael70471 Michael70471 08-02-2024 Computers and Technology contestada When you have this in your code:javaCopy codedouble x;x = 24.0/0;a) It compiles without errors and assigns the value of infinity to x.b) It throws a compilation error because you cannot divide by zero.c) It assigns the value of 0 to x.d) It throws a runtime exception.