//what is the output public class Testmain { public static v… Questions //whаt is the оutput public clаss Testmаin { public static vоid main(String[] args) { test(4); test(5.5); } public static vоid test(int x) { System.out.print(x * 2); } public static void test(double x) { System.out.print(x * 3); } } Show Answer Hide Answer 13. Find Show Answer Hide Answer