What will be the output of the program? class Test { static int s; public static void main(String [] args) { Test p = new Test(); p.start(); System.out.println(s); }
void start() { int x = 7; twice(x); System.out.print(x + " "); }
void twice(int x) { x = x*2; s = x; } }
Reveal answer
Fill a bubble to check yourself