The World Trade Center is often called a _______ Building, because it is made up of two identical buildings.
A. Alike B.Folk C.Twin D.Former
第1题:
第2题:
以下定义常量不正确的语句是()
AConst Num As Integer=200
BConst Num1 As Long=200, Sstr$="World"
CConst Sstr$="World"
DConst Num$=#World#
第3题:
以下哪一条HTML语句用于设置表格某一行中的所有单元格内容居中()。
A.<table align=”center”>…</table>
B.<tr align=”center”>…</tr>
C.<td align=”center”>…</td>
D.<th align=”center”>…</th>
第4题:
第5题:
13、Java程序向显示器输出信息“Hello, World”,下列哪种写法是错误的?
A.System.out.print(“Hello, world” );
B.System.out.println(“Hello, world” );
C.System.out.print(“Hello, world\n” );
D.printf(“Hello, world\n” );
第6题:
下列定义字符串类string对象的语句中,错误的是()。
A.string str;
B.string str(“Hello, world” );
C.string str = “Hello, world”;
D.string str = ‘Hello, world’;