单选题I tried() but the line was engaged.AphoneBphonedCphoningDto phone
单选题
I tried() but the line was engaged.
A
phone
B
phoned
C
phoning
D
to phone
参考解析
解析:
暂无解析
相关考题:
I tried phoning her office, but I couldn’t _______.A. get along B. get onC. get to D. get through
--- Have you ever tried sailing?--- __________.A. No. I’d like to tryB. Yes, I amC. No, thank you
--- Have you ever tried windsurfing?--- __________.A. Yes, I didB. No, there isn’tC. No, I haven’t
I felt my way to the hearth and picked up the pieces. I tried ________ to put them together.A vaguelyB valuablyC vainlyD vacantly
Nicholas: Hello. May I speak to Tom?Tom: ______A、Sorry, the number is engaged. Will you hold?B、Hello. Who're you, please?C、Hello. Thank you for calling.D、Yes, speaking.
11.publicvoidgenNumbers(){12.ArrayListnumbers=newArrayList();13.for(inti=0;i10;i++){14.intvalue=i*((int)Math.random());15.IntegerintObj=newInteger(value);16.numbers.add(intObj);17.}18.System.out.println(numbers);19.}WhichlineofcodemarkstheearliestpointthatanobjectreferencedbyintObjbecomesacandidateforgarbagecollection?()A.Line16B.Line17C.Line18D.Line19E.TheobjectisNOTacandidateforgarbagecollection.
Giventhefollowingcode:1)publicvoidmodify(){2)inti,j,k;3)i=100;4)while(i0){5)j=i*2;6)System.out.println(Thevalueofjis+j);7)k=k+1;8)i--;9)}10)}Whichlinemightcauseanerrorduringcompilation?()A.line4B.line6C.line7D.line8
Given:11.publicvoidgenNumbers(){12.ArrayListnumbers=newArrayList();13.for(inti=0;i10;i++){14.intvalue=i*((int)Math.random());15.IntegerintObj=newInteger(value);16.numbers.add(intObj);17.}18.System.out.println(numbers);19.}WhichlineofcodemarkstheearliestpointthatanobjectreferencedbyintObjbecomesacandidateforgarbagecollection?()A.Line19B.TheobjectisNOTacandidateforgarbagecollection.C.Line17D.Line16E.Line18
给出下列的代码,哪行在编译时可能会有错误? ① public void modify() { ② int i,j,k; ③ i=100; ④ while(i>0) { ⑤ j=i*2; ⑥ System.out.println(" The value of j is"+ j); ⑦ k=k+1; ⑧ } ⑨}A.line 4B.line 6C.line 7D.line 8
给出下列代码, ( )行在编译时可能会有错误。 ①public void modify( ){ ②int i,j,k; ⑧i=100; ④while(i>0){ ⑤j=i*2; ⑥System.out.println("The value of j is"+j); ⑦k=k+l; ⑧} ⑨}A.line 4B.line 6C.line 7D.line 8
若有以下程序: void g(int **q) { (**q) ++; (*q) ++; } void main() { int line [5]; int *p=line; for (i=0; i<5; i++) { *p=i; g(P); } for (i=0; i<5; i++) cout<<line[i]; cout<<end1; } 该程序运行后的输出结果为( )。A.12345B.1234C.11111D.55555
Given the following code: 1) public void modify() { 2) int i, j, k; 3) i = 100; 4) while ( i 0 ) { 5) j = i * 2; 6) System.out.println (" The value of j is " + j ); 7) k = k + 1; 8) i--; 9) } 10) } Which line might cause an error during compilation?() A、 line 4B、 line 6C、 line 7D、 line 8
interface foo { int k = 0; } public class test implements Foo ( public static void main(String args) ( int i; Test test = new test (); i= test.k; i= Test.k; i= Foo.k; ) ) What is the result? ()A、 Compilation succeeds.B、 An error at line 2 causes compilation to fail.C、 An error at line 9 causes compilation to fail.D、 An error at line 10 causes compilation to fail.E、 An error at line 11 causes compilation to fail.
单选题I tried()the book in a few days, but actually I couldn't, just because of too much work for me.AfinishBfinishingCto have finishedDfinished
单选题Given the following code: 1) public void modify() { 2) int i, j, k; 3) i = 100; 4) while ( i 0 ) { 5) j = i * 2; 6) System.out.println (" The value of j is " + j ); 7) k = k + 1; 8) i--; 9) } 10) } Which line might cause an error during compilation?()A line 4B line 6C line 7D line 8
单选题______explain it to him, he still didn't understand.AHard as I tried toBAs I tried hard toCHard I tried toDTried as I hard to
单选题I tried to get out of the business _____ I found impossible to carry on.AwhyBwhichCwhatDwhere
多选题Given a pre-generics implementation of a method: What three changes allow the class to be used with generics and avoid an unchecked warning?()ARemove line 14.BReplace line 14 with "int i = iter.next();".CReplace line 13 with "for (int i : intList) {".DReplace line 13 with "for (Iterator iter : intList) {".EReplace the method declaration with "sum(List intList)".