下列元素定义中正确的是()。A、book/BookB、BOOK/bookC、book/bookD、Book/bOOK
下列元素定义中正确的是()。
- A、
<book></Book> - B、<BOOK></book>
- C、<book></book>
- D、<Book></bOOK>
相关考题:
( )on the shelf was missing. A. One of the booksB. One of the bookC. None of bookD. One of book
After seeing the film, _________ . A.the book was read to himB.the book he wanted to readC.he wanted to read the bookD.he wanted the reading of the book
程序 include void main() { char str[][10]={ ”ok!”,“pen”,”book”,”desk”}; int i; for(i=1;i A.ok! penB.pen bookC.ok! pen bookD.ok! pen book desk
This passage most probably is_________A. a book reviewB. the preface of a bookC. the postscript. of a bookD. the concluding part of a book
Which of the followings presents the forecasts of the U.S. economy?A.Blue BookB.Green BookC.Beige BookD.White Book
假定有“structBOOK{chartitle[40];floatprice;};BOOK*book;”,则正确的语句为()。A、BOOK*x=newbook;B、BOOKx={"C++Programming",27.0};C、BOOK*x=newBOOK;D、BOOK*x=book;
下列选项中正确的语句是( )。A.chars[3];s="BOOK!";B.char*s;s={"BOOK!"};C.chars[10];s="BOOK";D.char*S;s="BOOK!";
下列选项中正确的语句是( )。A.chars[];s="BOOK!";B.char*s;S={"BOOK!");C.chars[10];s="BOOK";D.char*S;s="BOOK!";
This passage most probably is( ).A.a book reviewB.the preface of a bookC. the postscript of a bookD. the concluding part of a book
假定有“structBOOK{chartitle[40]floatprice}book”,则正确的语句为( )。 A.BOOK&x=&bookB.BOOK&x=bookC.BOOK&x=newBOOKD.BOOK&x=BOOK
假定有“structBOOK{chartitle[40]floatprice}BOOK*book”,则不正确的语句为( )。 A.BOOK*x=newbookB.BOOKx={"C++Programming", 27.0}C.BOOK*x=newBOOKD.BOOK*x=book
若要删除book表中所有数据,以下语句错误的是哪两项?() A.delete all from bookB.delete from bookC.truncate table bookD.drop table book
假定有“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;
假定有“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;
假定有“structBOOK{chartitle[40];floatprice;};BOOK*book;”定义,则不正确的语句为()。A、BOOK*x=newbookB、BOOKx={“C++Programming”,27.0}C、BOOK*x=newBOOKD、BOOK**x=&book
若要删除book表中所有数据,以下语句错误的是()A、truncate table bookB、delete * from bookC、drop table bookD、delete from book
如果想使某两个关键字(例如computer和book)同时出现,而不是任何一个出现即可,我们可采用的方法是()A、computer OR bookB、computer AND bookC、NOT computer AND bookD、computer AND NOT book
如果要查询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“数据库%”
单选题假定有“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;
单选题假定有“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;
单选题假定有“structBOOK{chartitle[40];floatprice;};BOOK*book=newBOOK;”,则正确的语句为()。Astrcpy(book-title,”WangTao”)Bstrcpy(book.title,”WangTao”)Cstrcpy(*book.title,”WangTao”)Dstrcpy((*book)-title,”WangTao”)