A: S<=B"00111011";
B: S<="00111011";
C: S<=X"3B";
D: S<=16"3B";
举一反三
- 对应ASCII码表,下列有关ASCII码值大小关系描述正确的是( ) A: "CR"<"d"<"G" B: "a"<"A"<"9" C: "9"<"A"<"CR" D: "9"<"R"<"n"
- 要创建一个左右框架,右边框架宽度是左边框架的3倍,以下HTML语句正确的是( )。 A: <FRAMESET cols="*, 2*"> B: <FRAMESET cols="*, 3*"> C: <FRAMESET rows="*, 2*"> D: <FRAMESET rows="*, 3*">
- 继续上题,为了程序编写简洁,要给数据框x中的6列重新命名为x1,x2,x3,x4,x5,x6,应该使用的命令是() A: ColNames(x) <- c("x1","x2","x3","x4","x5","x6") B: Names(x) <- c("x1","x2","x3","x4","x5","x6") C: colnames(x) <- c("x1","x2","x3","x4","x5","x6") D: colname(x) <- c("x1","x2","x3","x4","x5","x6")
- 定义名为“国籍”的元素,其在XML中的默认内容为“中国”,正确的选项为( )。 A: <!element name="国籍" default="中国" /> B: <element name="国籍" default="中国" /> C: <attribute name="国籍" default="中国" /> D: <element name="国籍" default="中国" >
- 定义名为“姓名”元素,该元素的内容不允许为空,下面正确的选项是( )。 A: <element name="姓名" required="true"/> B: <element name="姓名" required="false"/> C: <element name="姓名" nillable="true"/> D: <element name="姓名" nillable="false"/>
内容
- 0
下面语句中,正确的是( )。 A: printf("%c ","student"); B: printf("%c ","c"); C: printf("%s ",&a); D: printf("%s ","hello");
- 1
定义名为“学号”的属性,该属性的类型为“string”,该属性在XML中必须出现,下面正确的选项是( )。 A: <!attribute name="学号" type="string" use="required" /> B: <attribute name="学号" type="string" use="prohibited" /> C: <attribute name="学号" type="string" use="required" /> D: <attribute name="学号" type="string" use="optional" />
- 2
<p>若要使表格的行高为16pt,以下方法中,正确的是( )。</p> A: <table border="1" line-height=”16pt">…</table> B: <table border="1" style="line-height:16">…</table> C: <table border="1" style="line-height:16pt">…</table> D: <table border="1" style="height:16pt">…</table>
- 3
在HTML文件中导入一个样式表的正确语法为___________ A: <link src="c.css" rel="stylesheet" type="text/css"> B: <input href="c.css" rel="stylesheet" type="text/css"> C: <import href="c.css" rel="stylesheet" type="text/css"> D: <link href="c.css" rel="stylesheet" type="text/css">
- 4
下面哪种写法可以链接到百度网页? A: <a href="百度">百度</a> B: <a href="baidu.com" target="new">百度</a> C: <a href="http://baidu.com" target="new">百度</a> D: <a href="hhtp://www.baidu.com" target="new">百度</a>