Given the following code: public class Test { void printValue(int m) { do { System.out.println(&q
A.
Given the following code: public class Test { void printValue(int m) { do { System.out.println("The value is"+m); } while( --m >10 ) } public static void main(String arg[]) { int i=10; Test t= new Test (); t.printValue(i) ; } } Which will be output? A.The value is 8