网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
70 A good B col C out-of-door D inside
A
A
B
B
C
C
D
D
参考答案
参考解析
解析:
更多 “单选题70 A good B col C out-of-door D insideA AB BC CD D” 相关考题
考题
Bootstrap的网格系统类中,()是对应于小屏幕宽度(大于等于768px且小于992px)的设备。
A..col-md-B..col-xs-C..col-lg-D..col-sm-
考题
Bootstrap网格布局网页中,以下代码实现了一个列的()。divclass=containerdivclass=rowdivclass=col-lg-9col-md-8col-sm-5col-sm-offset-1col-lg-offset-0col-md-offset-0style=background-color:silvernavultype=none导航/ul/nav/div/div/divA、偏移B、左浮动C、右浮动D、嵌套
考题
以下网页代码中,设备的显示尺寸为()时,nav1和nav2将显示在同一行且nav1将显示在nav2前。divclass="container"divclass="row"divclass="col-lg-4col-lg-push-8col-md-4col-md-push-0"nav1/divdivclass="col-lg-8col-lg-pull-4col-md-8col-md-pull-0"nav2/div/div/divA、768pxB、≥768pxC、≥992pxD、≥1200px
考题
以下网页代码中,设备的显示尺寸为()时,nav1和nav2将显示为2行。divclass="containerdivclass="container"divclass="row"divclass="col-lg-4col-md-6col-sm-6"nav1/divdivclass="col-lg-8col-md-6col-sm-6"nav2/div/div/divA、768pxB、≥768pxC、≥992pxD、≥1200px
考题
Giventwocollectionobjectsreferencedbycol1andcol2,whichofthesestatementsaretrue?()
A.Theoperationcol1.retainAll(col2)willnotmodifythecol1object.B.Theoperationcol1.removeAll(col2)willnotmodifythecol2object.C.Theoperationcol1.addAll(col2)willreturnanewcollectionobject,containingelementsfrombothcol1 andcol2.D.Theoperationcol1.containsAll(Col2)willnotmodifythecol1object.
考题
The following statements:CREATE TABLE t1 (col1 INT NOT NULL, PRIMARY KEY(col1)); CREATE TABLE t2 (col1 INT NOT NULL, col2 CHAR(1) NOT NULL, PRIMARY KEY (col1, col2), FOREIGN KEY (col1) REFERENCES t1 (col1) ON DELETE CASCADE ON UPDATE RESTRICT); CREATE TABLE t3 (col1 INT NOT NULL, col2 INT NOT NULL, PRIMARY KEY (col1, col2),FOREIGN KEY (col1) REFERENCES t1 (col1) ON DELETE NO ACTION ON UPDATE RESTRICT);INSERT INTO t1 VALUES (1), (2); INSERT INTO t2 VALUES (1, ‘a‘), (1, ‘b‘), (2,‘c‘); INSERT INTO t3 VALUES (1, 100), (2, 200), (2,300);How many rows will be deleted by the following DELETE statement? DELETE FROM t1 WHERE col1= 1;()A.4B.3C.1D.0
考题
关于屏幕的尺寸标准,说法错误的是()A、col-sm-* 一般用于大于768的平板B、col-md-* 一般用于大于992的中等屏幕显示器C、col-lg-*用于大于1200的桌面显示器D、col-xs-*用于小于700的手机屏幕
考题
A view is created with the following statement:CREATE VIEW v1 AS SELECT col1, col2, col3, col4 FROM t1 WHERE col4 1000 WITH CHECK OPTIONWhat is the effect of the CHECK OPTION clause?()A、Any row inserted or updated through view V1 must meet the condition that col4 1000.B、From now on, any row inserted or updated in table T1 must meet the condition that col4 1000, but existing rows in the table are not checked.C、At view creation, DB2 will check the data in table T1, and if in any row doesn't meet the condition col4 1000, the view creation will be rejected.D、Any row inserted or updated through view V1 must meet the condition that col4 1000 and no row in table T1 can be updated such that col4 = 1000, but new rows in the table can be inserted with col4 = 1000.
考题
If a unique constraint is defined on column COL1 of table TAB1, what are the characteristics of COL1?()A、COL1 will accept NULL values and can be referenced in another table's foreign key specification.B、COL1 will not accept NULL values and cannot be referenced in another tables foreign key specification.C、COL1 will not accept NULL values and can be referenced in another tables foreign key specification.D、COL1 will accept NULL values and cannot be referenced in another tables foreign key specification.
考题
对于表A(col1 int,col2 char(1)),表B(col1 int,col2char(1)),为确保表A的数据全部被保留,下面正确的联接方式是()A、A inner join BB、A left join BC、A right join BD、Across join B
考题
能在1024的windows机器上显示8列而在肾6手机上显示12列的是()A、col-md-8 col-xs-12B、col-lg-8 col-sm-12C、col-md-8 col-sm-12D、col-lg-8 col-xs-12
考题
关于嵌套列的用法,错误的是()A、div class=“row”brdiv class=“col-sm-1”B、div class=“col-sm-1”brdiv class=“row”br C、div class=“row”brdiv class=“container”brdiv class=“col-xs-1”br D、div class=“container”brdiv class=“row”brdiv class=“col-xs-1”
考题
对于表A(col1 int,col2 char(1))更新col1=1的数据col2值为N,下面语句正确的是()A、update table A setcol2=’N’ where col1=1B、modify table A setcol2=N where col1=1C、update A set col2=’N’ where col1=1D、modify A set col2=N where col1=1
考题
存在两个结构相同的数据库表T1(col1,col2,col3)、T2(col1,col2,col3),写出一SQL语句将所有T1数据导入到T2表()A、select col1,col2,col3 from T1 into T2(col1,col2,col3)B、insert T1 (col1,col,col3) into T2(col1,col2,col3)C、insert into T2 (col1,col2,col3) as select col1,col2,col3 from T1D、insert into T2(col1,col2,col3) select col1,col2,col3 from T1;
考题
Given two collection objects referenced by col1 and col2,which of these statements are true?()A、The operation col1.retainAll(col2) will not modify the col1 object.B、The operation col1.removeAll(col2) will not modify the col2 object.C、The operation col1.addAll(col2) will return a new collection object, containing elements from both col1 and col2.D、The operation col1.containsAll(Col2) will not modify the col1 object.
考题
单选题对于表A(col1 int,col2 char(1)),表B(col1 int,col2char(1)),为确保表A的数据全部被保留,下面正确的联接方式是()A
A inner join BB
A left join BC
A right join BD
Across join B
考题
单选题存在两个结构相同的数据库表T1(col1,col2,col3)、T2(col1,col2,col3),写出一SQL语句将所有T1数据导入到T2表()A
select col1,col2,col3 from T1 into T2(col1,col2,col3)B
insert T1 (col1,col,col3) into T2(col1,col2,col3)C
insert into T2 (col1,col2,col3) as select col1,col2,col3 from T1D
insert into T2(col1,col2,col3) select col1,col2,col3 from T1;
考题
单选题对于表A(col1 int,col2 char(1))更新col1=1的数据col2值为N,下面语句正确的是()A
update table A setcol2=’N’ where col1=1B
modify table A setcol2=N where col1=1C
update A set col2=’N’ where col1=1D
modify A set col2=N where col1=1
考题
多选题Given two collection objects referenced by col1 and col2,which of these statements are true?()AThe operation col1.retainAll(col2) will not modify the col1 object.BThe operation col1.removeAll(col2) will not modify the col2 object.CThe operation col1.addAll(col2) will return a new collection object, containing elements from both col1 and col2.DThe operation col1.containsAll(Col2) will not modify the col1 object.
考题
单选题A view is created with the following statement:CREATE VIEW v1 AS SELECT col1, col2, col3, col4 FROM t1 WHERE col4 1000 WITH CHECK OPTIONWhat is the effect of the CHECK OPTION clause?()A
Any row inserted or updated through view V1 must meet the condition that col4 1000.B
From now on, any row inserted or updated in table T1 must meet the condition that col4 1000, but existing rows in the table are not checked.C
At view creation, DB2 will check the data in table T1, and if in any row doesn't meet the condition col4 1000, the view creation will be rejected.D
Any row inserted or updated through view V1 must meet the condition that col4 1000 and no row in table T1 can be updated such that col4 = 1000, but new rows in the table can be inserted with col4 = 1000.
考题
单选题The following statements: CREATE TABLE t1 (col1 INT NOT NULL, PRIMARY KEY(col1)); CREATE TABLE t2 (col1 INT NOT NULL, col2 CHAR(1) NOT NULL, PRIMARY KEY (col1, col2), FOREIGN KEY (col1) REFERENCES t1 (col1) ON DELETE CASCADE ON UPDATE RESTRICT); CREATE TABLE t3 (col1 INT NOT NULL, col2 INT NOT NULL, PRIMARY KEY (col1, col2),FOREIGN KEY (col1) REFERENCES t1 (col1) ON DELETE NO ACTION ON UPDATE RESTRICT);INSERT INTO t1 VALUES (1), (2); INSERT INTO t2 VALUES (1, 'a'), (1, 'b'), (2,'c'); INSERT INTO t3 VALUES (1, 100), (2, 200), (2,300); How many rows will be deleted by the following DELETE statement? DELETE FROM t1 WHERE col1= 1;()A
4B
3C
1D
0
热门标签
最新试卷