a fantasy story
a German folktale
a book celebrating childhood
a book of instruction
第1题:
This passage most probably is( ).
A.a book review
B.the preface of a book
C. the postscript of a book
D. the concluding part of a book
第2题:
We can read such a passage ______.
A.in a newspaper B.in a storybook C.in a picture book D.in a textbook
第3题:
第4题:
假定有“struct BOOK{char title[40]; float price;}; struct BOOK book;”,则不正确的语句为()。
Astruct BOOK *x=malloc(book);
Bstruct BOOK x={"C++ Programming",27.0};
Cstruct BOOK *x=malloc(sizeof(struct BOOK));
Dstruct BOOK *x=&book;
第5题:
They were able to create popular comic books despite the regulations of the Comics Code Authority.
They achieved commercial success because of the popularity of characters such as Spider-Man, the Hulk, and the Fantastic Four.
They repeated the same mistakes as the comic book companies of the Golden Age.
They failed to succeed because of the numbing effect of the Comics Code Authority regulations.
Marvel Comics was the only major comic book company to survive from the Golden Age into the Silver Age.
第6题:
Many people protested in the past six months.
Many people threw tomatoes at the German Chancellor.
Many people threw eggs at an important member of the German Chancellor’s Social Democrats.
Many people threw eggs at the German Chancellor, but he was not hit.
第7题:
Both Compton’s and World Book are encyclopedias.
Encarta Encyclopedia is giving way to Encyclopedia Britannica.
The sales of Encyclopedia Britannica have been going down dramatically over the past Decade.
Encyclopedia Britannica opens its Web site to attract more readers.
第8题:
struct BOOK x= &book;
struct BOOK *x=&book;
struct BOOK x=calloc(BOOK);
struct BOOK *x=BOOK;
第9题:
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‘计算机%’
第10题:
are disabled people full of love
wrote many famous books
finished the book by themselves
live a very poor life
第11题:
A menue in the restaurant.
A magazine on health
A school textbook
A story book
第12题:
An art book
A story book
A science book
A medicine book
第13题:
This passage can be classified as________.
A. an advertisement
B. a book review
C. a feature story
D. A news report
第14题:
第15题:
假定有“struct BOOK{char title[40]; float price;} book;”,则正确的语句为()。
Astruct BOOK x= &book;
Bstruct BOOK *x=&book;
Cstruct BOOK x=calloc(BOOK);
Dstruct BOOK *x=BOOK;
第16题:
下列元素定义中正确的是()。
第17题:
a better way to download an Ebook
a new kind of book-the Ebooks
the new version of Ebooks
the fun of reading Ebooks
第18题:
a book review
the preface of a book
the post script of a book
the concluding part of a book
第19题:
struct BOOK *x=malloc(book);
struct BOOK x={C++ Programming,27.0};
struct BOOK *x=malloc(sizeof(struct BOOK));
struct BOOK *x=&book;
第20题:
SELECT*FROM book WHERE book_nameLIKE‘*计算机*’
SELECT*FROM book WHERE book_nameLIKE‘%计算机%’
SELECT*FROM book WHERE book_name=‘%计算机*’
SELECT*FROM book WHERE book_name=‘*计算机%’
第21题:
As part of the emotional and intellectual experience, the shape and size of the book cannot be adapted in an e-book.
There is a lot you can’t standardize and stick into an electronic format.
There’s something personal about a book and not one of any files in a computer.
Print books are better to children’s health than the digital format.
第22题:
A book review in a journal intended for astrophysics professionals
A movie review in an entertainment industry publication
A book review in a science magazine aimed at a general audience
A book review in a newspaper
A transcript of a talk given at a science fiction convention dedicated to “the poetry of space”
第23题:
strcpy(book->title,”WangTao”)
strcpy(book.title,”WangTao”)
strcpy(*book.title,”WangTao”)
strcpy((*book)->title,”WangTao”)