He picked a book from the bookshelf and then commenced to read.A: directed B: commented C: committed D: began

题目
He picked a book from the bookshelf and then commenced to read.

A: directed
B: commented
C: committed
D: began

相似考题
更多“ He picked a book from the bookshelf and then commenced to read.”相关问题
  • 第1题:

    An e—book (also referred to as an electronic book, e—book, or e—book) is a digital version of a print book that you download and read. But if you want to read an e—book , you must have an E—book Reader, which is a kind of free software used by your computer. Make sure you have instal1ed the appropriate Reader before you download your e—book from the Internet.The software allows you to turn the words on the screen into the size you like. It also helps you turn pages and change your viewing options. E —books are a fun alternative to regular books. You can download them to any computers and create your library of hundreds of titles. If you load them onto your portable computer, you can take them with you when you travel. Some e—books are even interactive! Best of all, when you order an e—book, there is no waiting and no shipping charges. The amount of time it takes to download your e —book depends on the speed of your connection and the size of your e— book.

    26、From this passage, we learn that an e—book()

    A、 can be found in any library

    B、 can be read directly from the Internet

    C、 can be read when special software is installed

    27、 The E-book Reader is used for()

    A、 reading an e—book you’ve downloaded

    B、 turning a print book into a digital version

    C、 downloading an e—book from the Internet

    D、 copying an e—book onto a portable computer

    28、 From this passage, we can learn that()

    A、 you can read an e-book on a laptop when you travel

    B、 you can order an e—book using the E—book Reader

    C、 the e—books ordered have to be shipped to you

    D、 it takes a lot of trouble reading an e—book

    29、 Which of the following statements is TRUE?()

    A、 An e—book is ordered in print book、

    B、 The size of the words in an e—book cannot be changed

    C、 The downloading time is decided by the c—book’s size

    D、 There is less fun reading an e—book than a print book、

    30、 The passage is mainly about()

    A、 a better way to download an E—book

    B、 a new kind of book—the E—books

    C、 the new version of E—books


    26.

    答案:C

    解析:A项原文没有提及;根据文中“But if you want to read an e—book , you must have an E—book Reader, which is a kind of free software used by your computer.”和“Make sure you have instal1ed the appropriate Reader before you download your e—book from the Internet.”可知,电子书是不能直接在网页上阅读的,需要下载一个阅读器,故B项错误,C项正确。

    27.

    答案:A

    解析:根据文中“The software allows you to turn the words on the screen into the size you like. It also helps you turn pages and change your viewing options.”可知,软件的作用有:按照读者喜好调整屏幕上文字的大小,翻页,改变阅读选择。所以这个软件的主要作用还是阅读已经下载的电子书,选A。

    28.

    答案:A

    解析:根据文中“If you load them onto your portable computer, you can take them with you when you travel.”可知,A项正确。B项断章取义,e-books Reader是一个阅读器,只能用来阅读电子书,不能订阅;根据“when you order an e—book, there is no waiting and no shipping charges”可知,C项错误;根据“The amount of time it takes to download your e —book depends on the speed of your connection and the size of your e— book.”可知,D项说法不准确。

    29.

    答案:C

    解析:根据文章最后一句可知,C项正确,电子书下载时间决定于它的大小。根据“An e—book (also referred to as an electronic book, e—book, or e—book) is a digital version of a print book”可知,A项错误;根据“The software allows you to turn the words on the screen into the size you like.”可知,电子书字体的大小是可以改变的,B项错误;根据“E —books are a fun alternative to regular books. ”可知,D项错误。

    30.

    答案:B

    解析:文章第一句对e—book进行解释和定义,接下来对e—books具体使用方法等内容进行介绍,据此可知这篇文章主要内容就是介绍e—books,故选B。

  • 第2题:

    She ____________ a scarf from the closet to match her new dress.

    A.picked up

    B.picked on

    C.picked out

    D.picked at


    参考答案:C

  • 第3题:

    阅读以下说明和Java代码,回答问题

    [说明]

    对多个元素的聚合进行遍历访问时,需要依次推移元素,例如对数组通过递增下标的方式,数组下标功能抽象化、一般化的结果就称为迭代器(Iterator)。模式以下程序模拟将书籍(Book)放到书架(BookShelf)上并依次输出书名。这样就要涉及到遍历整个书架的过程。使用迭代器Iterator实现。图6-1显示了各个类间的关系。以下是JAVA语言实现,能够正确编译通过。

    [图6-1]

    [Java代码]

    //Iterator. java文件

    public interface Iterator {

    public abstract boolean hasNext();

    public abstract Object next();

    }

    //Aggregate. java文件

    public interface Aggregate {

    public abstract Iterator iterator();

    }

    //Book. java

    public class Book {

    //省略具体方法和属性

    }

    //BookshelfIterator. java文件

    public class Bookshelf工terator (1) Iterator{

    private BookShelf bookShelf;

    private int index;

    public BookshelfIterator(BookShelf bookShelf) {

    this. bookShelf = bookShelf;

    this. index = 0;

    }

    public boolean hasNext(){//判断是否还有下一个元素

    if(index < bookShelf. getLength()){

    return true;

    }else{

    return false;

    }

    }

    public Object next()f//取得下一个元素

    Book book = bookShelf. getBookAt(index);

    index++;

    return book;

    }

    }

    //BookShelf. java

    import java. util. Vector;

    public class BookShelf {

    private Vector books;

    public BookShelf(int initialsize){

    this. books = new Vector(initialsize);

    }

    public Book getBookAt(int index){

    return(Book)books.get(index);

    }

    public int getLength(){

    return books.size();

    }

    public Iterator iterator(){

    return new BookShelfIterator( (2) );

    }

    }

    //Main. java文件

    public class Main {

    public static void main(String args){

    BookShelf bookShelf = new BookShelf(4);

    //将书籍上架,省略代码

    Iterator it = bookShelf. (3) ;

    while( (4) ){//遍历书架,输出书名

    Book book = (Book)it. (5) ;

    System.out.printin(" "+book.getName());

    }

    }

    }


    正确答案:(1)implements this iterator() it.hasNext() next()
    (1)implements this iterator() it.hasNext() next() 解析:Iterator是接口类,空(1)应该填implements。
    根据构造函数Bookshelflterator(BookshelfbookShelf)可得,空(2)应填this,即自身引用。
    空(3)是取得迭代器实例,BookShelf类方法iterator()是返回Iterator接口,故空(3)应填iterator()。
    while循环是遍历书架,输出书名,循环条件是“还有下一记录(书)”,故空(4)应填it.hasNext()。注意指针写法。
    空(5)是取得书实例,BookShelf类中方法next()是返回Object类实例,取得下一本书,故空(5)应填next()。

  • 第4题:

    A seaman lost his continuous discharge book during the voyage. Upon discharge from Articles,he should be issued a ______.

    A.letter of service on company letterhead signed and sealed by the master

    B.Record of Entry in a Continuous Discharge Book for use in applying for a duplicate book

    C.Certificate of Discharge with the white copy forwarded to the Commandant

    D.Mutual Release (CG-2119),and the articles should be annotated as to the loss


    正确答案:C

  • 第5题:

    He cannot answer this question at once,but can find the answer to it from that book.

    A:soon
    B:immediately
    C:now
    D:early

    答案:B
    解析:
    at once“马上”,immediately“马上”,例如:It's getting late.We must go back home immediately.越来越晚了,我们得马上回家。soon“很快”,例如:We'll have lunch soon.我们很快就要吃中午饭了。now“现在”,例如:If we leave now we'll be there before dark.如果我们现在就离开,在天黑前就到那里了。early“早”,例如:Mary gets up very early.玛丽起得很早。

  • 第6题:

    A young man was getting ready to graduate from college, for many months he had admired a beautiful sports car in a dealer's showroom, and 21 his father could well afford it, he told him that was all he wanted.
    On the morning of his graduation day, his father called him into his own study and told him how 22 he was to have such a fine son. He handed his son a beautiful gift box. Curious but slightly disappointed, the young man 23 the box and found a lovely book. Angrily, he raised his voice at his father and said." 24 all your money you give me a book? " And rushed out of the house leaving the book in the study.
    He did not contact his father for a whole year 25 one day he saw in the street an old man who looked like his father. He realized he had to go back home and see his father.
    When he arrived at his father's house, he was told that his father had been in hospital for a week. The moment he was about to 26 the hospital. He saw on the desk the still new book, just as he had left it one 27ago. He opened it and began to turn the pages. Suddenly, a car key 28 from an envelope taped behind the book, it had a tag with dealer's name, the same dealer who had the sports car he had 29 on the tag was the date of his graduation, and the 30 :
    PAID IN FULL.

    ____23___

    A.packeD.
    B.openeD.
    C.picked up
    D.packed up

    答案:B
    解析:
    考查动词和动词短语。因为东西在盒子里,他想看里边的东西,此处动作只能是打开。pack“捆”;pack up“打包”;pick up“收拾”,均不合句意,故选B。

  • 第7题:

    现有书目表book,包含字段:price(float);现在查询一条书价最高的书目的详细信息,以下语句正确的是()

    • A、select top 1 * from book order by price asc
    • B、select top 1 * from book order by price desc
    • C、select top 1 * from book where price= (select max (price)from book)
    • D、select top 1 * from book where price= max(price)

    正确答案:B,C

  • 第8题:

    现有书目表book,包含字段:价格price(float),类别type(char);现在查询各个类别的平均价格、类别名称,以下语句正确的是()。

    • A、select avg(price),type from book group by type
    • B、select count(price),type from book group by price
    • C、select avg(price),type from book group by price
    • D、select count(price),type from book group by type

    正确答案:A

  • 第9题:

    填空题
    I borrowed a book from Linda.→ Linda ____ a book.

    正确答案: lent me
    解析:
    borrow sth. from sb. =lend sb. sth. borrow用来表示主语借入,lend用来表示主语借出。

  • 第10题:

    单选题
    查询book表中所有书名中包含“计算机”的书籍情况,可用()语句。
    A

    SELECT*FROM book WHERE book_nameLIKE‘*计算机*’

    B

    SELECT*FROM book WHERE book_nameLIKE‘%计算机%’

    C

    SELECT*FROM book WHERE book_name=‘%计算机*’

    D

    SELECT*FROM book WHERE book_name=‘*计算机%’


    正确答案: D
    解析: 暂无解析

  • 第11题:

    单选题
    Why did the Italian take off his watch and give it to the Frenchman?
    A

    Because he had taken the watch from the Frenchman.

    B

    Because he had picked up the watch on his way from work.

    C

    Because he was afraid of the Frenchman.


    正确答案: A
    解析:
    考 点:细节题。参照上一题的解释可以看出,年轻人以为法国人在拦路抢劫,他很害怕,所以才会把表给他。

  • 第12题:

    单选题
    A seaman lost his continuous discharge book during the voyage. Upon discharge from Articles,he should be issued a().
    A

    letter of service on company letterhead signed and sealed by the master

    B

    Record of Entry in a Continuous Discharge Book for use in applying for a duplicate book

    C

    Certificate of Discharge with the white copy forwarded to the Commandant

    D

    Mutual Release (CG-2119),and the articles should be annotated as to the loss


    正确答案: B
    解析: 暂无解析

  • 第13题:

    Sorry, he’s fully ___________ (book) this morning


    参考答案:booked

  • 第14题:

    A centuries-old tradition,illustrated in a modem children's book. 1inks the sweetness of honey with the joy of learning to read.

    “The grandpa held a jar of honey so that all the family could see. He then dipped a spoon into it and put some honey on the cover of a small book.

    The little girl had just turned five.

    ‘Stand up,little one,’he asked the girl softly. ‘I did this for your mother,your uncles,your older brother,and now you!’

    Then,he handed the book to her. ‘Taste!’

    She touched the honey with her finger and put it into her mouth.

    ‘What's that taste?’the grandpa asked.

    The little girl answered,‘Sweet!’

    Then all of the family said in a single voice,‘Yes,and so is knowledge,but knowledge is from the bee that made that sweet honey,you have to go after it through the pages of a book!’

    The little girl knew that the promise to read was at last hers. Soon she was going to learn to read. ”

    This is the beginning of a profoundly moving children's book entitled Thank You,Mr. Falker. In this book,Patricia Polacco writes of her own passion to read,inspired by the honey on the book. It wasn't until fifth grade that she met her beloved teacher who provided the hlep that she needed to finally unlock the magic of the written word.

    Reading this book,we are in fact acquainted with some enduring traditions of child education that stress the importance of verbal capacity at a very early age.

    The child learning to read is admitted into a collective memory by way of books. And with the printed words that are active with meaning,the child becomes acquainted with a common past which he or she renews,to a greater or lesser degree,in every reading. Much as the author of the book Thank You,Mr. Falker puts it,“Almost as if it were magic,or as if light poured into her brain,the words and sentences started to take shape on the page as they never had before…And she understood the whole thing…Then she went into the living room and found the book on a shelf,the very book that her grandpa had shown her so many years ago. She spooned honey on the cover and tasted the sweetness…Then she held the book,honey and all,close to her chest. She could feel tears roll down her cheeks,but they weren't tears of sadness-she was happy,so very happy. ”

    The girl who tasted the honey on the book was______.

    A.nearly six years old

    B.less than five years old

    C.more than six years old

    D.a little more than five years old


    正确答案:D
    解析:事实细节题。由第三段可知:那个女孩刚过5岁。因此,D项符合题意。

  • 第15题:

    阅读下列函数说明和C++代码,回答问题

    [说明]

    对多个元素的聚合进行遍历访问时,需要依次推移元素,例如对数组通过递增下标的方式,数组下标功能抽象化、一般化的结果就称为迭代器(Iterator)。模式以下程序模拟将书籍(Book)放到书架(BookShelf)上并依次输出书名。这样就要涉及到遍历整个书架的过程。使用迭代器Iterator实现。图5-1显示了各个类间的关系。以下是C++语言实现,能够正确编译通过。

    [图5-1]

    [C++代码]

    template (1) >

    class Iterator{

    public:

    virtual bool hasNext() = 0;

    (2) Object* next() = 0;

    };

    class Book{

    //省略具体方法和属性

    };

    class BookShelf{

    private:

    vector books;

    public:

    BookShelf(){

    }

    Book* getBookAt(int index){

    return &booksindex;

    }

    int getLength(){

    return books. size();

    }

    };

    template

    class BookshelfIterator : public (3) {

    private:

    BookShelf * bookShelf;

    int index;

    public:

    BookshelfIterator(BookShelf *bookShelf){

    this->bookShelf = bookShelf;

    index = 0;

    }

    bool hasNext(){//判断是否还有下一个元素

    if(index < bookShelf->getLength()){

    return true;

    }else{

    return false;

    }

    }

    Objeot* next(){//取得下一个元素

    return bookShelf->getBookAt(index++);

    }

    };

    int main()

    {

    BookShelf bookShelf;

    //将书籍上架,省略代码

    Book *book;

    Iterator *it = new BookShelfIterator( (4) );

    while( (5) ){//遍历书架,输出书名

    book=(Book*)it->next();

    /*访问元素*/

    }

    return 0;

    }


    正确答案:(1)Object virtual IteratorObject> &bookShelf it->hasNext()
    (1)Object virtual IteratorObject> &bookShelf it->hasNext()

  • 第16题:

    According to Sinotime,during the period of this Charter,should the Vessel be requisitioned by the government of the Vessel's nationality,hire to ______ from the time of her requisition.

    A.continue

    B.stop

    C.commence

    D.cease


    正确答案:D

  • 第17题:

    A young man was getting ready to graduate from college, for many months he had admired a beautiful sports car in a dealer's showroom, and 21 his father could well afford it, he told him that was all he wanted.
    On the morning of his graduation day, his father called him into his own study and told him how 22 he was to have such a fine son. He handed his son a beautiful gift box. Curious but slightly disappointed, the young man 23 the box and found a lovely book. Angrily, he raised his voice at his father and said." 24 all your money you give me a book? " And rushed out of the house leaving the book in the study.
    He did not contact his father for a whole year 25 one day he saw in the street an old man who looked like his father. He realized he had to go back home and see his father.
    When he arrived at his father's house, he was told that his father had been in hospital for a week. The moment he was about to 26 the hospital. He saw on the desk the still new book, just as he had left it one 27ago. He opened it and began to turn the pages. Suddenly, a car key 28 from an envelope taped behind the book, it had a tag with dealer's name, the same dealer who had the sports car he had 29 on the tag was the date of his graduation, and the 30 :
    PAID IN FULL.

    ____21___

    A.finding
    B.proving
    C.deciding
    D.knowing

    答案:D
    解析:
    考查动词辨析。通过“he told him that was all he wanted."可知此处应为知道的意思.选D。

  • 第18题:

    资料:From Coins to Credit Banking Throughout the Ages is a concise history of banks and the banking industry from ancient times to the present. James Gallagher, who has made a career of covering financial news for several newspapers, has done a careful job of investigating his subject. Although he presents the facts carefully, Mr. Gallagher has made what could have been a dry book into one that is interesting and enjoyable. By telling amusing anecdotes about historical figures, he makes them come alive. Even people who are not particularly attracted to the subject matter will find this book engrossing.

    What does the reviewer NOT mention about the book?

    A.It is very long.
    B.It is entertaining.
    C.It describes people from the past.
    D.It is well researched.

    答案:A
    解析:
    本题考查的是细节理解。
    【关键词】NOT mention; book
    【主题句】第1自然段James Gallagher, who has made a career of covering financial news for several newspapers, has done a careful job of investigating his subject. Although he presents the facts carefully, Mr. Gallagher has made what could have been a dry book into one that is interesting and enjoyable. By telling amusing anecdotes about historical figures, he makes them come alive. 詹姆斯加拉格尔已经为几家报纸报道金融新闻,他在调查他的主题方面做了细致的工作。尽管他很仔细地陈述了事实,但加拉格尔先生已经把一本枯燥的书变成了一本有趣而又愉悦的书。通过讲述一些关于历史人物的趣闻轶事,他让他们鲜活了起来。
    【解析】本题的问题是“书评人没有提到这本书的什么?”。选项A意为“篇幅很长”;选项B意为“富有娱乐性”;选项C意为“描述过去的人物”;选项D意为“经过充分的调研”。
    根据主题句可知,B、C、D选项均有提及,故选A。

  • 第19题:

    若要删除book表中所有数据,以下语句错误的是()

    • A、truncate table book 
    • B、delete * from book
    • C、drop table book 
    • D、delete from book

    正确答案:B,C

  • 第20题:

    如果要查询book表中所有书名以“数据库”开头的书籍价格,下列()语句是正确的。

    • A、SELECT price FROM book WHERE book_name=“数据库*”
    • B、SELECT price FROM book WHERE book_name LIKE“数据库*”
    • C、SELECT price FROM book WHERE book_name=“数据库%”
    • D、SELECT price FROM book WHERE book_name LIKE“数据库%”

    正确答案:D

  • 第21题:

    单选题
    — Excuse me, is there ______ book by Mo Yan?— Yes. It’s on ______ bookshelf over there.
    A

    a; /

    B

    a; the

    C

    /;the

    D

    the; a


    正确答案: A
    解析:
    句意:——请问有莫言的书吗?——有,在那边的书架上。本题考查冠词的用法。第一个空泛指莫言书中的任意一本,所以用a修饰。第二个空,特指说话双方都明确知道的那边的书架,所以填定冠词the,故选B项。

  • 第22题:

    单选题
    要查询book表中所有书名中以“计算机”开头的书籍的价格,可用()语句。
    A

    SELECT price FROM book WHERE book_name=‘计算机*’

    B

    SELECT price FROM book WHERE book_nameLIKE‘计算机*’

    C

    SELECT price FROM book WHERE book_name=‘计算机%’

    D

    SELECT price FROM book WHERE book_nameLIKE‘计算机%’


    正确答案: D
    解析: 暂无解析

  • 第23题:

    单选题
    He didn’t buy the book because he was interested in poetry.
    A

    He didn’t buy the book because he was not interested in poetry.

    B

    He bought the book, but it is not because he was interested in poetry.

    C

    He bought the book because he was interested in poetry.

    D

    He bought the book because he was not interested in poetry.


    正确答案: B
    解析:
    该题考查否定转移。原句“因为他对诗歌感兴趣,所以他没买书”,并不构成因果关系。有时,在把汉语中对状语的否定译成英语时,应把其转换为对谓语的否定,因此本句表达的应是“他并不是因为对诗歌感兴趣才买的书”,所以选项B为正确答案。