单选题_____AcomeBappearCenterDgo
单选题
_____
A
come
B
appear
C
enter
D
go
参考解析
解析:
go to one’s head骄傲自满,为固定短语。
go to one’s head骄傲自满,为固定短语。
相关考题:
We've already sent out the invitation cards, but we don't know how many people_________. A.comeB.are comingC.cameD.have come
My brother has just arrived, but I didn’t know he ( ) to see me until yesterday afternoon.A、comeB、cameC、was comingD、is coming
---Is everyone here? ---Not yet……Look , there_______ the rest of our guests!A. comeB. comesC. is comingD. are coming
The book has been translated into thirty languages since it _____on the market in 1973.A.had comeB. has comeC. cameD.comes
Can you imagine the difficulty I had ___________ language obstacles I fit studied abroad?.A.to over comeB.over comingC.over comeD.over came
You__yesterday if you were really serious about the job.A.ought to comeB.ought have comeC.ought comeD.ought to have come
Whenever I try to______up what innovation looks like, the same slideshow of images clicks across my mind.A.comeB.figureC.conjureD.set
单选题Taking part in the Council’s trial schemes are children who _____.Aliving in Milton and go to Impington schoolBliving in Impington and go to Milton schoolCliving in Milton and go to Milton schoolDliving in Impington and go to Impington school
单选题Tell your men ()the rules and procedures of working when dismantling the equipment.Anot to go againstBdon’t go againstCnot go to againstDto not go against
单选题Although it is raining hard,_____.ATom still wants to go outBand Tom still wants to go outCthat Tom still wants to go outDbut Tom still wants to go out
单选题—Would you like me to go to the dentist with you? —No, you ______ with me.Aneed not to goBneed not goCdo not need go Dnot need go
单选题1. public class GoTest { 2. public static void main(String[] args) { 3. Sente a = new Sente(); a.go(); 4. Goban b = new Goban(); b.go(); 5. Stone c = new Stone(); c.go(); 6. } 7. } 8. 9. class Sente implements Go { 10. public void go() { System.out.println(”go in Sente.”); } 11. } 12. 13. class Goban extends Sente { 14. public void go() { System.out.println(”go in Goban”); } 15. } 16. 17. class Stone extends Goban implements Go { } 18. 19. interface Go { public void go(); } What is the result?()A go in Goban go in Sente go in SenteB go in Sente go in Sente go in GobanC go in Sente go in Goban go in GobanD go in Goban go in Goban go in SenteE Compilation fails because of an error in line 17.