第1题:
Each life jacket light that has a non-replaceable power source must be replaced ______.
A.every 6 months after initial installation
B.every 12 months after initial installation
C.every 24 months after initial installation
D.on or before the expiration date of the power source
第2题:
语素的主要作用是构词,根据其构词作用可分三部分,例如汉语中“老鹰、阿爸”中的“老、啊”和英语happiness、writer中的ness和er就是()、“鹰、爸、happy、write”是(),英语books、doing、walked中的s、ing和ed是()。
词缀;词根;词尾
略
第3题:
在Java中,下列关于读写文件的描述错误的是()。
A.Reader类的read()方法用来从源中读取一个字符的数据
B.Reader类的read(int n )方法用来从源中读取一个字符的数据
C.Writer类的write(int n)方法用来向输出流写入单个字符
D.Writer类的write(String str)方法用来向输出流写入一个字符串
第4题:
假定有“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;
第5题:
下面代码用于把数据以追加的方式写入到指定的文件中,请完成程序的填空。 string filename = TextBox1.Text.ToString(); string filecontent = TextBox2.Text.ToString(); StreamWriter swr = new ; swr.WriteLine(filecontent); Response.Write(""); swr.Close();
下面代码用于把数据以追加的方式写入到指定的文件中,请完成程序的填空。 string filename = TextBox1.Text.ToString(); string filecontent = TextBox2.Text.ToString(); StreamWriter swr = new ; swr.WriteLine(filecontent); Response.Write(""); swr.Close();第6题:
与下列语句组等效的语句组是: document.write ("123<br>"); document.write ("456");
A.for (document) { write ("123<br>"); write ("456"); }
B.with (document) { write ("123<br>"); write ("456"); }
C.foreach (document) { write ("123<br>"); write ("456"); }
D.while (document) { write ("123<br>"); write ("456"); }