网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
I am very ( )in reading books.

A. interested

B. favourite

C. liking

D. lovable


参考答案

更多 “ I am very ( )in reading books. A. interestedB. favouriteC. likingD. lovable ” 相关考题
考题 33. --- I’m sorry to keep you waiting.--- Oh, not at all. I ______ here for only a few minutes.A. was B. have beenC. will be D. am

考题 Don’t think I’m joking. I ____________ business. (A) think(B) am(C) mean(D) talk

考题 1. He used to _______in the sun,but now he is used to _______at night.A. read ; readB. reading ; readC. read; readingD. reading; reading

考题 l.—Hello! My name_________ Tom.—Hello! I _________ Kate.A. is ; isB. am ; amC. am; isD. is ; am

考题 I, as well as he, ()a student. A、beB、isC、areD、am

考题 – I haven’t got a cat. -Neither _____ I. A.haveB.doC.am

考题 I ________ always ________ that mistakes. A. am, makingB. /, makeC. will, makeD. /, to make

考题 A:I'm keen on football.B: So ( )I.A. haveB. doC. am

考题 A: I’m keen on baseball. B: So ________ I A.haveB.doC.am

考题 在主线程中启动一个子线程执行reading函数。 import threading import time import random def reading(): for i in range(10): print("reading",i) time.sleep(random.randint(1,2)) _______________________________ r.setDaemon(False) r.start() print("The End")A.r=threading.Thread(reading)B.r=threading.Thread(target=reading())C.r=threading.Thread(target=reading)D.r=Thread(target=reading)