Consider a method defined with the header: public static void doStuff(int x) Which of the following method calls is legal?
doStuff(0.555);doStuff(9);doStuff(0.1 + 0.2);all of the options are legal except for onedoStuff(0.1, 0.2);