第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题:
A.picked up
B.picked on
C.picked out
D.picked at
第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());
}
}
}
第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
第5题:
第6题:
第7题:
现有书目表book,包含字段:price(float);现在查询一条书价最高的书目的详细信息,以下语句正确的是()
第8题:
现有书目表book,包含字段:价格price(float),类别type(char);现在查询各个类别的平均价格、类别名称,以下语句正确的是()。
第9题:
第10题:
SELECT*FROM book WHERE book_nameLIKE‘*计算机*’
SELECT*FROM book WHERE book_nameLIKE‘%计算机%’
SELECT*FROM book WHERE book_name=‘%计算机*’
SELECT*FROM book WHERE book_name=‘*计算机%’
第11题:
Because he had taken the watch from the Frenchman.
Because he had picked up the watch on his way from work.
Because he was afraid of the Frenchman.
第12题:
letter of service on company letterhead signed and sealed by the master
Record of Entry in a Continuous Discharge Book for use in applying for a duplicate book
Certificate of Discharge with the white copy forwarded to the Commandant
Mutual Release (CG-2119),and the articles should be annotated as to the loss
第13题:
第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
第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;
}
第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
第17题:
第18题:
第19题:
若要删除book表中所有数据,以下语句错误的是()
第20题:
如果要查询book表中所有书名以“数据库”开头的书籍价格,下列()语句是正确的。
第21题:
a; /
a; the
/;the
the; a
第22题:
SELECT price FROM book WHERE book_name=‘计算机*’
SELECT price FROM book WHERE book_nameLIKE‘计算机*’
SELECT price FROM book WHERE book_name=‘计算机%’
SELECT price FROM book WHERE book_nameLIKE‘计算机%’
第23题:
He didn’t buy the book because he was not interested in poetry.
He bought the book, but it is not because he was interested in poetry.
He bought the book because he was interested in poetry.
He bought the book because he was not interested in poetry.