单项选择题
A. line 4
B. line 6
C. line 7
D. line 8
多项选择题 IntheJavaAPIdocumentationwhichsectionsareincludedinaclassdocument?()
多项选择题 Whichofthefollowingstatementsaboutdeclarationaretrue?()
单项选择题 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?()