云南农业职业技术学院 - 互联网技术学院 - 大二上学期期末测试试题
总复习(测试)
298题_共101.32分_及格60.00分
第1题 【单选题】【0.34分】【概念理解】
假设订单表orders用来存储订单信息,cid代表客户编号,money代表单次订购额,现要查询每个客户的订购次数和每个客户的订购总金额,下面( )sql语句可以返回正确结果。
- select cid,count(distinct(cid)),sum(money) from orders group by cid
- select cid,count(distinct(cid)),sum(money) from orders order by cid
- select cid,count(cid),sum(money) from orders order by cid
- select cid,count(cid),sum(money) from orders group by cid
第2题 【单选题】【0.34分】【概念理解】
下列选项中关于Java中super关键字的说法正确的是( )
- super关键字是在子类对象内部指代其父类对象的引用
- super关键字不仅可以指代子类的直接父类,还可以指代父类的父类
- 子类通过super关键字只能调用父类的方法,而不能调用父类的属性
- 子类通过super关键字只能调用父类的属性,而不能调用父类的方法
第3题 【单选题】【0.34分】【结果判断】
分析下述JavaScript代码,经过运算后a的值为()。 var x= “12”; var y=34; var a=x+y;
- 1234
- 46
- 34
- 程序报错
第4题 【单选题】【0.34分】【概念理解】
在查询语句的where子句中,如果出现了“score between 30 and 40”,这个表达式等同于( )。
- score>=30 and score<=40
- score=30 and score=40
- score>30 and score<40
- score<=40
第5题 【单选题】【0.34分】【概念理解】
为一个boolean类型变量赋值时,可以使用( )方式
- boolean = 1
- boolean a = (9 >= 10)
- boolean a=”真”
- boolean a == false
第6题 【单选题】【0.34分】【概念理解】
下列有关JDBC查询的描述,说法错误的是( )
- Statement的executeQuery()方法会返回一个结果集
- Statement的executeUpdate()方法会返回是否更新成功的boolean值
- 使用ResultSet中的getString()可以获得一个对应于数据库中char类型的值
- ResultSet中的next()方法会使结果集中的下一行成为当前行
第7题 【单选题】【0.34分】【概念理解】
关于MySQL表说法正确的是( )
- 表的字段不区分大小写
- 表的字段区分大小写
- 表的字段不可以出现同名
- 表的字段可以出现同名
第8题 【单选题】【0.34分】【概念理解】
媒体查询语法中,可用设备名参数“all”表示的是()
- 手持设备
- 文档打印或打印预览模式
- 所有设备
- 盲文
第9题 【单选题】【0.34分】【概念理解】
JavaScript中对于付出是指的变量使用typeof运算符会输出()。
- string
- object
- undefined
- null
第10题 【单选题】【0.34分】【概念理解】
下列关于PreparedStatement,说法错误的是( )
- PreparedStatement是Statement的子接口
- PreparedStatement可以有效地防止SQL注入
- PreparedStatement不能用于批量更新的操作
- PreparedStatement可以存储预编译的Statement,从而提升执行效率
第11题 【单选题】【0.34分】【概念理解】
媒体查询的基本语法中,多种设备用()分割
- and
- or
- not
- ,(逗号)
第12题 【单选题】【0.34分】【概念理解】
在html中,要通过无列表符号来实现导航菜单,css属性中的()可以实现导航菜单横向排列。
- list-style
- padding
- z-index
- float
第13题 【单选题】【0.34分】【概念理解】
MYSQL中用于表示年月日的数据类型是
- date
- string
- varchar
- datetime
第14题 【单选题】【0.34分】【概念理解】
在jQuery中,要将元素 A 追加到元素 B 中,使用的方法是()。
- $(A).append(B)
- $(A).appendTo(B)
- $(A).prepend(B)
- $(A).prependTo(B)
第15题 【单选题】【0.34分】【概念理解】
H5 响应式布局中,视口的相关属性设置,initial-scale 属性的作用是
- 设置页面的初始缩放值为一个数字,可以带小数
- 允许用户的最小缩放值为一个数字,可以带小数
- 允许用户的最大缩放值为一个数字,可以带小数
- 是否允许用户进行缩放,值为“no”或“yes”
第16题 【单选题】【0.34分】【概念理解】
媒体查询语法中,可用设备名参数表示“演讲”的是
- speech
- tty
- tv
- all
第17题 【单选题】【0.34分】【概念理解】
Java访问修饰符的访问范围从大到小依次是( )。
- public,protected,default,private
- private,protected,default,public
- protected,default,public,private
- private,default,protected,public
第18题 【单选题】【0.34分】【概念理解】
对JavaScript代码: var e=document.getElementsByName(“js”); 理解正确是()。
- 将var e 改为var object e更好
- document.getElementsByName(“js”)表示获得ID为js的标签
- document.getElementsByName(“js”)和document.getElementsById(“js”)是等效的
- e是name值为js的标签数组
第19题 【单选题】【0.34分】【概念理解】
在jQuery中,当DOM加载完成后要执行的函数,下面哪个是正确的?
- jQuery(expression,[context])
- jQuery(html,[ownerDocument])
- jQuery(callback)
- jQuery(elements)
第20题 【单选题】【0.34分】【概念理解】
媒体查询语法中,媒体查询属性“color”表示的是()
- 定义’device-width’与’device-height’的比率
- 每一组输出设备的彩色原件个数。如果不是彩色设备,则值等于0
- 设备的分辨率
- 定义’width’与’height’的比率
第21题 【单选题】【0.34分】【概念理解】
用于将事务处理写到数据库的命令是( )
- insert
- rollback
- commit
- savepoint
第22题 【单选题】【0.34分】【概念理解】
媒体查询语法中,可用设备名参数表示“幻灯片演示”的是
- projection
- screen
- speech
- tty
第23题 【单选题】【0.34分】【概念理解】
以下哪个是关系型数据库( )
- MYSQL
- REDIS
- NOSQL
- HBASE
第24题 【单选题】【0.34分】【概念理解】
媒体查询语法中,可用设备名参数“speech”表示的是()
- 电视
- 所有设备
- 演讲
- 固定字母间距的网格媒体,比如电传打印机
第25题 【单选题】【0.34分】【概念理解】
请问JS中的基本数据类型有几种?( )
- 5
- 6
- 7
- 8
第26题 【单选题】【0.34分】【概念理解】
以下语句错误的是( )
- alter table emp delete column addcolumn;
- alter table emp modify column addcolumn char(10);
- alter table emp change column addcolumn int;
- alter table emp add column addcolumn int;
第27题 【单选题】【0.34分】【概念理解】
下列哪种说法是正确的( )。
- 实例方法可直接调用超类的实例方法
- 实例方法可直接调用超类的类方法
- 实例方法可直接调用其他类的实例方法
- 实例方法可直接调用本类的类方法
第28题 【单选题】【0.34分】【概念理解】
修改数据库表结构用以下哪一项( )
- update
- delete
- alter
- create
第29题 【单选题】【0.34分】【概念理解】
在jQuery中,$(A).append(B)用于()。
- 将 B 追加到 A 中
- 把 A 追加到 B 中
- 将 B 前置插入到 A 中
- 将 A 前置插入到 B 中
第30题 【单选题】【0.34分】【概念理解】
下列关于PreparedStatement,说法错误的是( )。
- PreparedStatement是Statement的子接口
- PreparedStatement可以有效地防止SQL注入
- PreparedStatement不能用于批量更新的操作
- PreparedStatement可以存储预编译的Statement,从而提升执行效率
第31题 【单选题】【0.34分】【概念理解】
媒体查询语法中,可用设备名参数表示“文档打印或预览”的是
- projection
- screen
- speech
第32题 【单选题】【0.34分】【概念理解】
下列哪种说法是正确的( )
- 实例方法可直接调用超类的实例方法
- 实例方法可直接调用超类的类方法
- 实例方法可直接调用其他类的实例方法
- 实例方法可直接调用本类的类方法
第33题 【单选题】【0.34分】【概念理解】
以下双方之间属于一对多关系的是( )
- 老师和学生
- 用户和银行卡
- 学科与课程
- 学生和语文成绩
第34题 【单选题】【0.34分】【概念理解】
在SQL语句中,需要对分组聚合的列再次筛选使用的关键字是 ( )
- Having
- Group by
- Order By
- where
第35题 【单选题】【0.34分】【概念理解】
JavaScript变量命名不正确的是()。
- 3age
- _age
- $gender
- student_name
第36题 【单选题】【0.34分】【概念理解】
MySQL中用于完成最大值聚合的关键字是
- MIN
- MAX
- COUNT
- AVG
第37题 【单选题】【0.34分】【概念理解】
在jQuery中,在一个表单里,想要找到指定元素的第一个元素用()实现
- eq(1)
- first
- find(1)
- select(1)
第38题 【单选题】【0.34分】【概念理解】
关于E-R图,下列描述正确的是( )
- 矩形表示实体之间的联系
- 椭圆表示实体
- 菱形表示实体之间的联系
- 菱形表示实体的属性
第39题 【单选题】【0.34分】【概念理解】
CSS3中新出现的多列布局是传统块状布局模式的有力扩充,使用 column-gap 属性的意义是()。
- 指定列之间的距离
- 指定元素横向能跨多少列
- 指定列数
- 指定内容在列与列之间的分布方式
第40题 【单选题】【0.34分】【概念理解】
医院中医生和病人之间的关系是以下 ( )。
- 一对一
- 一对多
- 多对一
- 多对多
第41题 【单选题】【0.34分】【概念理解】
下列( )不属于连接种类
- 左外连接
- 内链接
- 中连接
- 交叉连接
第42题 【单选题】【0.34分】【概念理解】
表的关系,正确的说法是( )
- 一个数据库服务器只能管理一个数据库,一个数据库只能包含一个表
- 一个数据库服务器可以管理多个数据库,一个数据库可以包含多个表
- 一个数据库服务器只能管理一个数据库,一个数据库可以包含多个表
- 一个数据库服务器可以管理多个数据库,一个数据库只能包含一个表
第43题 【单选题】【0.34分】【概念理解】
在jQuery中,如果想在一个指定的元素后添加内容,下面哪个是实现该功能的?
- append(content)
- appendTo(content)
- insertAfter(content)
- after(content)
第44题 【单选题】【0.34分】【概念理解】
下面代码的输出是什么?( ) for (var i = 0; i < 3; i++) { setTimeout(function () { console.log(i); }, 1); } for (let i = 0; i < 3; i++) { setTimeout(function () { console.log(i); }, 1); }
- 0 1 2 and 0 1 2
- 0 1 2 and 3 3 3
- 3 3 3 and 0 1 2
- 3 3 3 and 3 3 3
第45题 【单选题】【0.34分】【概念理解】
MySQL中用于完成模糊查询的关键字是
- where
- and
- or
- like
第46题 【单选题】【0.34分】【概念理解】
媒体查询语法中,可用设备名参数表示“盲文”的是
- braille
- handheld
- projection
第47题 【单选题】【0.34分】【概念理解】
媒体查询的基本语法中,排除某种设备可以使用()运算符
- and
- ,(逗号)
- not
- only
第48题 【单选题】【0.34分】【概念理解】
在页面加载时,可以使用()标签设置浏览器的视口的宽度
- head
- meta
- viewport
- device-width
第49题 【单选题】【0.34分】【概念理解】
当子类的成员变量与父类的成员变量重名时,若想在子类中使用父类中同名的成员变量,要使用关键字( )。
- super
- import
- this
- return
第50题 【单选题】【0.34分】【概念理解】
在 HTML5 中,图文布局或显示数据的场合,适合使用()块结构
- div-ul(ol)-li
- div-dl-dt-dd
- div-table-tr-td
- div-form-table-tr-td
第51题 【单选题】【0.34分】【概念理解】
下面哪种不是jQuery的选择器?
- 基本选择器
- 后代选择器
- 类选择器
- 进一步选择器
第52题 【单选题】【0.34分】【概念理解】
在 HTML5 中,块级标签根据它们使用场合的不同,可以分为 4 类,不包括()。
- 分类导航或菜单等场合,使用 div-ul(ol)-li 块结构
- 图文混编场合,使用 div-dl-dt-dd 块结构
- 图文布局或显示数据的场合,使用 div-table-tr-td 块结构
- 布局表单的场合,使用 div-table-form-tr-td 块结构
第53题 【单选题】【0.34分】【概念理解】
使用SQL命令将学生表STUDENT中的学生年龄AGE字段的值增加1岁,应该使用的命令是( )
- UPDATE SET AGE WITH AGE+1
- REPLACE AGE WITH AGE+1
- UPDATE STUDENT SET AGE=AGE+1
- UPDATE STUDENT AGE WITH AGE+1
第54题 【单选题】【0.34分】【概念理解】
下拉菜单中,用户更改元素select中的值时,会调用()事件处理程序。
- onchange
- onfocus
- onmouseover
- onclick
第55题 【单选题】【0.34分】【概念理解】
媒体查询语法中,可用设备名参数表示“所有设备”的是
- all
- braille
- handheld
第56题 【单选题】【0.34分】【概念理解】
下列选项中,可以设置页面中某个DIV标签相对于页面水平居中的CSS样式是()。
- padding:0px auto
- text-align:center
- vertical-align:middle
- margin:0px auto
第57题 【单选题】【0.34分】【概念理解】
关系数据库中,主键是( )
- 创建唯一的索引,允许空值
- 只允许以表中第一字段建立
- 允许有多个主键的
- 用于标识表中唯一的实体
第58题 【单选题】【0.34分】【概念理解】
关于E-R图,下列描述正确的是
- 矩形表示实体之间的联系
- 椭圆表示实体
- 菱形表示实体之间的联系
- 菱形表示实体的属性
第59题 【单选题】【0.34分】【概念理解】
在jQuery中,要将元素 B 追加到元素 A 中,使用的方法是()。
- $(A).append(B)
- $(A).appendTo(B)
- $(A).prepend(B)
- $(A).prependTo(B)
第60题 【单选题】【0.34分】【概念理解】
H6 响应式布局中,视口的相关属性设置,minimum-scale 属性的作用是
- 设置页面的初始缩放值为一个数字,可以带小数
- 允许用户的最小缩放值为一个数字,可以带小数
- 允许用户的最大缩放值为一个数字,可以带小数
- 是否允许用户进行缩放,值为“no”或“yes”
第61题 【单选题】【0.34分】【概念理解】
Java中java.long.Long对应Mysql数据库中什么类型( )
- int
- varchar
- float
- bigint
第62题 【单选题】【0.34分】【概念理解】
在jQuery中,$(A).insertAfter(B)方法用于()。
- 表示将元素 B 插入到元素 A 之后
- 表示将元素 A 插入到元素 B 之后
- 表示将元素 B 插入至元素 A 之前
- 表示将元素 A 插入到元素 B 之前
第63题 【单选题】【0.34分】【特性分析】
要选择id=’div1’所有span后代元素,请选出正确的选择器()
- $(‘#div1 span’)
- $(‘#div1>span’)
- $(‘#div1+span’)
- $(‘#div1~span’)
第64题 【单选题】【0.34分】【概念理解】
在jQuery中,用于获取匹配元素的文本内容的方法是()。
- html()
- html(content)
- text()
- text(content)
第65题 【单选题】【0.34分】【概念理解】
MySql中如果需要对结果进行重复行过滤,使用以下哪个关键字 ( )
- order
- repeat
- distinct
- where
第66题 【单选题】【0.34分】【概念理解】
list是Java的一个ArrayList的对象,哪个选项的代码填写到//todo delete处,可以在Iterator遍历的过程中正确并安全的删除一个list中保存的对象?( ) Iterator it = list.iterator(); int index = 0; while (it.hasNext()){ Object obj = it.next(); if (needDelete(obj)) { //needDelete返回boolean,决定是否要删除 //todo delete } index ++; }
- list.remove(obj)
- list.remove(index)
- list.remove(it.next())
- it.remove()
第67题 【单选题】【0.34分】【概念理解】
以下关于Java中集合说法错误的是( )
- ArrayList和LinkedList都实现了List接口
- Collections类中提供了大量的集合工具方法
- HashMap是键值对且保持有序的集合容器
- ArrayList存储数据的同时能保证元素的顺序
第68题 【单选题】【0.34分】【概念理解】
弹性布局中,属性“flex-wrap”的意思是()
- 扩展比率
- 收缩比率
- 伸缩流方向
- 伸缩流换行
第69题 【单选题】【0.34分】【概念理解】
弹性布局中,属性“flex-direction”的意思是()
- 扩展比率
- 收缩比率
- 伸缩流方向
- 伸缩流换行
第70题 【单选题】【0.34分】【概念理解】
编写JavaBean就是编写一个Java类,所以只要会写类就能编写一个Bean,一个完整JavaBean在类的命名上需要遵守以下规则,其中错误的是( )
- 类中方法的访问属性必须是public的
- 对于boolean类型的成员变量,允许使用is代替get
- 类中如果有构造方法,那么这个构造方法也是public的,并且是无参数的
- 在JavaBean中定义属性时,应该定义成public
第71题 【单选题】【0.34分】【概念理解】
MYSQL存储过程中使用用户变量的关键字是
- VAR @
- SET @
- DIM @
- INT @
第72题 【单选题】【0.34分】【概念理解】
下列关于 Java 中集合描述错误的是( )
- ArrayList 内部采用数组实现数据存储
- ArrayList 在删除、插入元素时效率高于 LinkedList
- LinkedList 在删除、插入元素时效率高于 ArrayList
- ArrayList 循环遍历上效率高于 LinkedList
第73题 【单选题】【0.34分】【概念理解】
在SQL查询时,使用WHERE子句指出的是( )
- 查询目标
- 查询值
- 查询条件
- 查询结果
第74题 【单选题】【0.34分】【概念理解】
在jQuery中,用于设置匹配元素的HTML内容的方法是()。
- html()
- html(content)
- text()
- text(content)
第75题 【单选题】【0.34分】【概念理解】
下列不属于DIV+CSS布局优势的是()。
- 表现和内容分离
- 大大缩减页面代码,提高页面浏览速度
- 便于搜索引擎搜索
- 比table布局更容易学习
第76题 【单选题】【0.34分】【概念理解】
MySql中对列进行求和,使用的聚合函数名称是( )
- avg
- sum
- max
- count
第77题 【单选题】【0.34分】【概念理解】
表达式不可以作为循环条件
- i++
- i>5
- i<=8
- i==0
第78题 【单选题】【0.34分】【概念理解】
下面代码的输出是什么?( ) let a = 666; let b = new Number(666); let c = 666; console.log(a == b); console.log(a === b); console.log(b === c);
- true false true
- false false true
- true false false
- false true true
第79题 【单选题】【0.34分】【概念理解】
例如数据库中有A表,包括学生,学科,成绩 ,序号四个字段 , 数据库结构为 学生 学科 成绩 序号 张三 语文 60 1 张三 数学 100 2 李四 语文 70 3 李四 数学 80 4 李四 英语 80 5 上述哪一列可作为主键列( )
- 序号
- 学生
- 学科
- 成绩
第80题 【单选题】【0.34分】【概念理解】
下列关于static关键字,说法正确的是( )。
- static关键字只能修饰方法,不能修饰成员变量。
- static修饰的方法可以访问非静态的实例变量和实例方法
- 静态方法不能使用this关键字和super关键字
- 实例方法不可以访问静态成员和非静态成员
第81题 【单选题】【0.34分】【概念理解】
媒体查询语法中,媒体查询属性“device-height”表示的是()
- 输出设备中的页面可见区域宽度
- 输出设备中的页面可见区域高度
- 输出设备的屏幕可见宽度
- 输出设备的屏幕可见高度
第82题 【单选题】【0.34分】【概念理解】
以下为Java的Demo类。 public class Demo extends Base{ private int count; public Demo(){ System.out.println(“A Demo object has been created”); } protected void addOne() {count++; } } 下列哪句描述是正确的?( )。
- 当创建一个Demo类的实例对象时,count的值为0
- 当创建一个Demo类的实例对象时,count的值是不确定的
- 超类对象中可以包含改变count 值的方法
- Demo的子类对象可以访问count
第83题 【单选题】【0.34分】【概念理解】
在jQuery中,$(A).prependTo(B)用于()。
- 将 B 追加到 A 中
- 把 A 追加到 B 中
- 将 B 前置插入到 A 中
- 将 A 前置插入到 B 中
第84题 【单选题】【0.34分】【概念理解】
在jQuery中指定一个类,如果存在就执行删除功能,如果不存在就执行添加功能,下面()可以直接完成该功能。
- removeClass()
- deleteClass()
- toggleClass(class)
- addClass()
第85题 【单选题】【0.34分】【概念理解】
下列有关JDBC查询的描述,说法错误的是( )
- Statement的executeQuery()方法会返回一个结果集
- Statement的executeUpdate()方法会返回是否更新成功的boolean值
- 使用ResultSet中的getInt()可以获得一个对应于数据库中int类型的值
- ResultSet中的next()方法会使结果集中的下一行成为当前行
第86题 【单选题】【0.34分】【概念理解】
在jQuery中想要实现通过远程Http Get请求载入信息功能的是下面的哪一下事件?
- $.ajax()
- load(url)
- $.get(url)
- $.getScript(url)
第87题 【单选题】【0.34分】【概念理解】
下列关于static关键字,说法正确的是( )
- static关键字只能修饰方法,不能修饰成员变量
- static修饰的方法可以访问非静态的实例变量和实例方法
- 静态方法不能使用this关键字和super关键字
- 实例方法不可以访问静态成员和非静态成员
第88题 【单选题】【0.34分】【概念理解】
下列对封装的描述,正确的有( )。
- 只能对一个类中的方法进行封装,不能对属性进行封装
- 封装提高的软件开发的复杂度
- 封装的意义并不大,因此在编码时尽量不要使用封装
- 封装的主要作用在于对外隐藏内部实现细节,增强程序的安全性
第89题 【单选题】【0.34分】【概念理解】
在jQuery中,想要给第一个指定的元素添加样式,下面哪一个是正确的?
- first
- eq(1)
- css(name)
- css(name,value)
第90题 【单选题】【0.34分】【概念理解】
下列关于static关键字,说法正确的是( )
- static关键字只能修饰方法,不能修饰成员变量
- static修饰的方法可以访问非静态的实例变量和实例方法
- 静态方法不能使用this关键字和super关键字
- 实例方法不可以访问静态成员和非静态成员
第91题 【单选题】【0.34分】【概念理解】
在事务控制语句中,用于设置事务自动提交的是( )
- set autocommit=1
- set autocommit=0
- autocommit
- commit
第92题 【单选题】【0.34分】【概念理解】
以下可以实现按性别(sex)统计员工(tb_emp)人数的语句是( )
- select sex,count(*) from tb_emp order by sex
- select sex,count(*) from tb_emp
- select max(*) from tb_emp group by sex
- select sex,count(*) from tb_emp group by sex
第93题 【单选题】【0.34分】【概念理解】
CSS3中新出现的多列布局是传统块状布局模式的有力扩充,要指定列宽,可以使用的属性是()。
- column-rule-width
- column-width
- column-count
- width
第94题 【单选题】【0.34分】【概念理解】
执行下面代码结果( ) for(int i=0;;){ System.out.println(”这是”+i); break; }
- 语法错误,缺少表达式2和表达式3
- 死循环
- 无输出
- 输出:这是0
第95题 【单选题】【0.34分】【概念理解】
H8 响应式布局中,视口的相关属性设置,user-scalable 属性的作用是
- 设置页面的初始缩放值为一个数字,可以带小数
- 允许用户的最小缩放值为一个数字,可以带小数
- 允许用户的最大缩放值为一个数字,可以带小数
- 是否允许用户进行缩放,值为“no”或“yes”
第96题 【单选题】【0.34分】【概念理解】
CSS3中新出现的多列布局是传统块状布局模式的有力扩充,使用 column-count 属性的意义是()。
- 指定列数
- 指定内容在列与列之间的分布方式
- 指定列之间的距离
- 指定元素横向能跨多少列
第97题 【单选题】【0.34分】【概念理解】
以下查询语句中关键字使用顺序正确的是( )
- select…from…order by…group by…where
- select…from…where…group by…order by
- select…from…group by…order by…where
- select…where…from…group by…order by
第98题 【单选题】【0.34分】【概念理解】
媒体查询语法中,媒体查询属性“aspect-ratio”表示的是()
- 设备的分辨率
- 定义’width’与’height’的比率
- 定义’device-width’与’device-height’的比率
- 每一组输出设备的彩色原件个数。如果不是彩色设备,则值等于0
第99题 【单选题】【0.34分】【特性分析】
JavaScript中要将IP地址“192.168.1.100”按”.”分割成4个字符串,应该使用哪个方法()。
- substring()
- substr()
- split()
- indexOf()
第100题 【单选题】【0.34分】【概念理解】
数据库表中,学生的姓名列可以使用下列哪种类型。( )
- int
- char(5)
- varchar(20)
- decimal
第101题 【单选题】【0.34分】【概念理解】
以下哪项用于左连接( )
- join
- left join
- right join
- left
第102题 【单选题】【0.34分】【概念理解】
媒体查询语法中,可用设备名参数表示“固定字母间距的网格媒体”的是
- tty
- tv
- all
- braille
第103题 【单选题】【0.34分】【概念理解】
下列关于PreparedStatement,说法错误的是( )
- PreparedStatement是Statement的子接口
- PreparedStatement可以有效地防止SQL注入
- PreparedStatement不能用于批量更新的操作
- PreparedStatement可以存储预编译的Statement,从而提升执行效率
第104题 【单选题】【0.34分】【概念理解】
弹性布局中,属性“flex-shrink”的意思是()
- 扩展比率
- 收缩比率
- 伸缩流方向
- 伸缩流换行
第105题 【单选题】【0.34分】【概念理解】
HTML 5 和 CSS3 中,关于代码:*{ margin:0px; padding:0px; } 正确的说法是()
- 用于清除浏览器默认的外边距和内边距
- 用于统一所有元素的外边距和内边距
- 用于统一所有类(class)的外边距和内边距
- 优先级非常高,所以要放在第一行
第106题 【单选题】【0.34分】【概念理解】
MYSQL中用于完成平均值的聚合函数是
- min
- max
- count
- avg
第107题 【单选题】【0.34分】【概念理解】
CSS样式background-position:10px -10px 代表的意义是()
- 背景图片向左偏移10px,向下偏移10px
- 背景图片向左偏移10px,向上偏移10px
- 背景图片向右偏移10px,向下偏移10px
- 背景图片向右偏移10px,向上偏移10px
第108题 【单选题】【0.34分】【概念理解】
给定如下Java代码,在横线处新增( )方法可以实现对test方法的重载。 public class Test{ public void test(int x, int y) { } _________________________________ }
- public int test(int x, int y){ return 0; }
- public int test(int x, double y){ return 0; }
- public void test(int x, int z){ }
- public void test(int y, int x){ }
第109题 【单选题】【0.34分】【概念理解】
以下约束哪个不是单表约束?( )
- 主键约束
- 非空约束
- 外键约束
- 唯一约束
第110题 【单选题】【0.34分】【概念理解】
对象的行为在类中表示,称为类的( )。
- 动作
- 属性
- 方法
- 数据类
第111题 【单选题】【0.34分】【概念理解】
在 HTML5 中,图文混编场合,适合使用()块结构
- div-ul(ol)-li
- div-dl-dt-dd
- div-table-tr-td
- div-form-table-tr-td
第112题 【单选题】【0.34分】【概念理解】
在jQuery中,$(A).insertBefore(B)方法用于()。
- 表示将元素 B 插入到元素 A 之后
- 表示将元素 A 插入到元素 B 之后
- 表示将元素 B 插入至元素 A 之前
- 表示将元素 A 插入到元素 B 之前
第113题 【单选题】【0.34分】【概念理解】
下列JavaScript内置对象实例化错误的是()。
- var x=new Date()
- var x=new Array();
- var x=new String();
- var x=new Math();
第114题 【单选题】【0.34分】【概念理解】
在jQuery中,要将元素 B 前置插入到元素 A 中,使用的方法是()。
- $(A).append(B)
- $(A).appendTo(B)
- $(A).prepend(B)
- $(A).prependTo(B)
第115题 【单选题】【0.34分】【概念理解】
以下不是修改表操作的是( )
- drop table user;
- alter table user add remark varchar(20);
- alter table user character set utf8;
- alter table user drop remark;
第116题 【单选题】【0.34分】【概念理解】
以下关于Java中说法不正确的是( )
- Java是面向对象的编程语言
- Java源代码后缀名是.java
- Java源代码编译后的后缀名是.class
- Java中的基本数据类型有:int、double、boolean、String、char、float
第117题 【单选题】【0.34分】【特性分析】
JavaScript要实现弹出一个带“确定”和“取消”按钮的对话框,应该使用window对象的哪个方法()。
- alert
- confirm
- prompt
- open
第118题 【单选题】【0.34分】【概念理解】
在CSS中属性()可以设置元素的叠放顺序。
- A. position
- display
- overflow
- z-index
第119题 【单选题】【0.34分】【概念理解】
JavaScript中对于未声明的变量使用typeof运算符会输出()。
- string
- object
- undefined
- null
第120题 【单选题】【0.34分】【概念理解】
以下为Java的Demo类。 public class Demo extends Base{ private int count; public Demo(){ System.out.println(“A Demo object has been created”); } protected void addOne() {count++; } }
- 当创建一个Demo类的实例对象时,count的值为0
- 当创建一个Demo类的实例对象时,count的值是不确定的
- 超类对象中可以包含改变count 值的方法
- Demo的子类对象可以访问count
第121题 【单选题】【0.34分】【概念理解】
媒体查询的基本语法中,不存在()运算符
- and
- or
- not
- only
第122题 【单选题】【0.34分】【概念理解】
在jQuery中,html(content)方法用于()
- 获取匹配元素的HTML内容
- 设置匹配元素的HTML内容
- 获取匹配元素的文本内容
- 设置匹配元素的文本内容
第123题 【单选题】【0.34分】【概念理解】
在jQuery中,为每一个指定元素的指定事件绑定一个事件处理器函数,下面()是用来实现该功能的。
- trigger()
- bind()
- one()
- click()
第124题 【单选题】【0.34分】【概念理解】
在 jQuery 中,可以通过()方法增加元素类样式
- css()
- addCss()
- class()
- addClass()
第125题 【单选题】【0.34分】【概念理解】
在Java中,下列( )可以正确获取连接对象
- Class.forName(driver);
- DriverManager.getConnection(url,uid,pwd);
- createStatement()
- execute();
第126题 【单选题】【0.34分】【概念理解】
给出代码如下: public class MyRunnable implements Runnable { public void run() { ———————————————— } } 问在虚线处,如下( )代码可以创建并启动线程?
- new Runnable(MyRunnable).start()
- new Thread(MyRunnable).run()
- new Thread(new MyRunnable()).start()
- new MyRunnable().start()
第127题 【单选题】【0.34分】【概念理解】
CSS3中新出现的多列布局是传统块状布局模式的有力扩充,使用 column-span 属性的意义是()。
- 指定元素横向能跨多少列
- 指定列数
- 指定内容在列与列之间的分布方式
- 指定列之间的距离
第128题 【单选题】【0.34分】【概念理解】
DROP命令属于( )操作
- DML
- DQL
- DDL
- DCL
第129题 【单选题】【0.34分】【概念理解】
媒体查询语法中,可用设备名参数“handheld”表示的是()
- 项目演示,比如幻灯片
- 彩色电脑屏幕
- 手持设备
- 文档打印或打印预览模式
第130题 【单选题】【0.34分】【概念理解】
下列jQuery函数不能执行动画效果的是()。
- animate
- slidedown
- show
- append
第131题 【单选题】【0.34分】【概念理解】
在CSS中,属性()可以设置盒子的圆角边框。
- border-radius
- border
- radius
- circle
第132题 【单选题】【0.34分】【概念理解】
在jQuery中,$(A).after(B)方法用于()。
- 表示将元素 B 插入到元素 A 之后
- 表示将元素 A 插入到元素 B 之后
- 表示将元素 B 插入至元素 A 之前
- 表示将元素 A 插入到元素 B 之前
第133题 【单选题】【0.34分】【概念理解】
媒体查询语法中,媒体查询属性“width”表示的是()
- 输出设备中的页面可见区域宽度
- 输出设备中的页面可见区域高度
- 输出设备的屏幕可见宽度
- 输出设备的屏幕可见高度
第134题 【单选题】【0.34分】【概念理解】
import的作用是( )
- 导入包中成员
- 创建包
- 既可以导入包成员,又可以创建包
- 访问控制
第135题 【单选题】【0.34分】【概念理解】
媒体查询语法中,可用设备名参数“screen”表示的是()
- 固定字母间距的网格媒体,比如电传打印机
- 电视
- 彩色电脑屏幕
- 演讲
第136题 【单选题】【0.34分】【概念理解】
下列选择中关于Java中this关键字的说法错误的是( )
- this关键字是一个对象的引用
- this关键字可以用于引用当前类对象
- this可用于构造函数中,调用类本身重载的构造函数,但是必须写在首行
- this指向的是当前类的父类
第137题 【单选题】【0.34分】【概念理解】
在MYSQL中用于限制查询结果数量的关键字是
- where
- limit
- order
- group
第138题 【单选题】【0.34分】【概念理解】
CSS3中新出现的多列布局是传统块状布局模式的有力扩充,要设置列之间的宽度,可以使用的属性是()。
- column-rule-width
- column-width
- column-count
- width
第139题 【单选题】【0.34分】【概念理解】
在jQuery中,在一个表单中,如果想要给输入框添加一个输入验证,可以用下面的哪个事件实现?
- hover(over ,out)
- keypressfn)
- change()
- change(fn)
第140题 【单选题】【0.34分】【概念理解】
有程序如下: class Base { public void method() { System.out.print(“Base method”); } } public class Sub extends Base { public void method() { System.out.print(“Sub method”); } public void methodB() { System.out.print(“Sub methodB”); } public static void main(String[] args) { Base base = new Sub(); base.method(); base.methodB(); } } 其运行结果为( )。
- Sub method Sub methodB
- Base method Sub methodB
- Base method Sub method
- 出现编译错误
第141题 【单选题】【0.34分】【概念理解】
DECIMAL是( )数据类型
- 可变精度浮点值
- 整数值
- 双精度浮点值
- 单精度浮点值
第142题 【单选题】【0.34分】【概念理解】
下列( )完整性中,将每一条记录定义为表中的惟一实体,即不能重复。
- 域完整性
- 引用完整性
- 实体完整性
- 行列完整性
第143题 【单选题】【0.34分】【概念理解】
关于Java继承,下列说法错误的是( )
- 继承会节约大量的时间,增加代码的可读性
- Java中的继承通过extend关键字来实现
- 子类不能继承父类的private属性和方法
- Java语言采用的是单继承规则
第144题 【单选题】【0.34分】【概念理解】
MYSQL中以下是用于声明变量的关键字的是
- VAR
- DECLARE
- DIM
- INT
第145题 【单选题】【0.34分】【概念理解】
mysql中 存储过程,以下说法正确的是( )
- T-SQL批代码的执行速度要快于存储过程
- 不能在存储过程中使用CREATE VIEW命令
- 存储过程必须带有参数
- 存储过程不能返回结果集
第146题 【单选题】【0.34分】【概念理解】
媒体查询语法中,可用设备名参数“print”表示的是()
- 彩色电脑屏幕
- 演讲
- 文档打印或打印预览模式
- 项目演示,比如幻灯片
第147题 【单选题】【0.34分】【概念理解】
在jQuery中,下面哪种不属于jQuery的筛选?
- 过滤
- 自动
- 查找
- 串联
第148题 【单选题】【0.34分】【概念理解】
下述选项中不属于JDBC基本功能的是( )。
- 与数据库连接
- 提交SQL语句
- 处理查询结果
- 数据库维护
第149题 【单选题】【0.34分】【概念理解】
典型的JDBC程序按( )顺序编写。 1. 释放资源 2. 获得与数据库的物理连接 3. 执行SQL语句 4. 加载数据库驱动 5. 创建不同类型的Statement 6. 如果有结果集,处理结果集
- 4->2->5->3->6->1
- 2->4->3->5->6->1
- 4->2->3->5->6->1
- 4->2->6->3->5->1
第150题 【单选题】【0.34分】【概念理解】
在jQuery中,在一个表单中,如果将所有的div元素背景色都设置为绿色,jQuery 代码是()。
- $(“div”).css(“bgcolor”, ”green”);
- $(“div”).css(”green”, “bgcolor”);
- $(“div”).css(“backgroundColor”, ”green”);
- $(“div”).css(“background-color”, ”green”);
第151题 【单选题】【0.34分】【概念理解】
在jQuery中,$(A).prepend(B)用于()。
- 将 B 追加到 A 中
- 把 A 追加到 B 中
- 将 B 前置插入到 A 中
- 将 A 前置插入到 B 中
第152题 【单选题】【0.34分】【概念理解】
编写JavaBean就是编写一个Java类,所以只要会写类就能编写一个Bean,一个完整JavaBean在类的命名上需要遵守以下规则,其中错误的是( )。
- 类中方法的访问属性必须是public的
- 对于boolean类型的成员变量,允许使用is代替get
- 类中如果有构造方法,那么这个构造方法也是public的,并且是无参数的
- 在JavaBean中定义属性时,应该定义成public
第153题 【单选题】【0.34分】【概念理解】
Java中,下面哪个流类属于面向字符的输入流( )
- BufferedWriter
- FileInputStream
- ObjectInputStream
- InputStreamReader
第154题 【单选题】【0.34分】【概念理解】
Mysql针对表中主键列描述错误的是( )
- 主键列不允许重复
- 主键列不允许为空
- 主键列可以是字符串类型
- 主键列必须为自增列
第155题 【单选题】【0.34分】【概念理解】
随着 Internet 的发展,Web 页面的设计也更专业化和模块化。一个 Web 页面一般由()结构组成。
- 多个模块
- 单一模块
- 多个混合
- 单一顺序
第156题 【单选题】【0.34分】【概念理解】
在jQuery中,用于设置匹配元素的文本内容的方法是()。
- html()
- html(content)
- text()
- text(content)
第157题 【单选题】【0.34分】【概念理解】
在SQL语言中,下列用于建立存储过程的命令是( )
- CREATE PROCEDURE
- CREATE FILE
- CREATE PROC
- CREATE FUNCTION
第158题 【单选题】【0.34分】【概念理解】
媒体查询的基本语法中,“逻辑与”运算符是()
- and
- ,(逗号)
- not
- only
第159题 【单选题】【0.34分】【概念理解】
Java中用于定义抽象类的关键字是:( )
- implements
- extends
- abstract
- override
第160题 【单选题】【0.34分】【概念理解】
下面代码的输出是什么?( ) function sayHi() { console.log(name); console.log(age); var name = “TJH”; let age = 24; }
- TJH 和 undefined
- TJH 和 ReferenceError
- ReferenceError 和 24
- undefined 和 ReferenceError
第161题 【单选题】【0.34分】【概念理解】
弹性布局中,属性“flex-grow”的意思是()
- 扩展比率
- 收缩比率
- 伸缩流方向
- 伸缩流换行
第162题 【单选题】【0.34分】【特性分析】
在CSS中有一个名为nav的类,下列选项中可以将该类样式应用到id为nav_header的标签上()。
- $(“#nav_header”).css(‘nav’)
- $(“#nav_header”).class(‘nav’)
- $(“#nav_header”).addClass(‘nav’)
- $(“#nav_header”).cssName=’nav’
第163题 【单选题】【0.34分】【概念理解】
在jQuery中,text(content)方法用于()
- 获取匹配元素的HTML内容
- 设置匹配元素的HTML内容
- 获取匹配元素的文本内容
- 设置匹配元素的文本内容
第164题 【单选题】【0.34分】【概念理解】
下列选项中关于Java中super关键字的说法正确的是( )。
- super关键字是在子类对象内部指代其父类对象的引用
- super关键字不仅可以指代子类的直接父类,还可以指代父类的父类
- 子类通过super关键字只能调用父类的方法,而不能调用父类的属性
- 子类通过super关键字只能调用父类的属性,而不能调用父类的方法
第165题 【单选题】【0.34分】【概念理解】
下面代码的输出是什么?( ) const numbers = [1, 2, 3]; numbers[10] = 11; console.log(numbers);
- [1, 2, 3, 7 x null, 11]
- [1, 2, 3, 11]
- [1, 2, 3, 7 x empty, 11]
- SyntaxError
第166题 【单选题】【0.34分】【概念理解】
假设有表score表示学生成绩,表student表示学生信息(学生编号、姓名等),两表通过外键stuId关联,则下列( )可实现将学生张三的Java成绩增加10分。
- update score set grade=grade+10 where subject=′java′ and stuid=(select stuid from student where stuname=′张三′)
- update score set grade=grade+10 where stuid in(select stuid from student where stuname=′张三′)
- update score set grade=grade+10 where subject=′java′
- update student set stuname=′张三′ where stuid=(select stuid from score where subject=′java′)
第167题 【单选题】【0.34分】【概念理解】
下列关于构造方法,说法正确的是( )。
- 所有类都必须定义一个构造方法
- 构造方法必须有返回值
- 构造方法可以访问类的非静态成员
- 构造方法必须初始化类的所有数据成员
第168题 【单选题】【0.34分】【概念理解】
在 HTML5 中,使用()标签对表单元素进行分组,然后使用()标签设置每组内容的标题。
、 、 </li><li><fieldset>、<legend></li><li><legend>、<fieldset></li></ol> <h2 id="h2--strong-em-169-0-34-em-strong-"><a name="<strong><em> 第169题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第169题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>对于try{} catch{}子句的排列方式,下列正确的一项是( )。</strong></p> <ol> <li>子类异常在前,父类异常在后</li><li>父类异常在前,子类异常在后</li><li>只能有子类异常</li><li>父类异常与子类异常不能同时出现</li></ol> <h2 id="h2--strong-em-170-0-34-em-strong-"><a name="<strong><em> 第170题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第170题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,$(this).get(0)的写法和()是等价的。</strong></p> <ol> <li>$(this).get[0]</li><li>$(this)[0]</li><li>$(this).[0]</li><li>$(this).(0)</li></ol> <h2 id="h2--strong-em-171-0-34-em-strong-"><a name="<strong><em> 第171题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第171题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,当一个文本框中的内容被选中时,想要执行指定的方法时,可以使用下面哪个事件来实现?</strong></p> <ol> <li>click(fn)</li><li>change(fn)</li><li>select(fn)</li><li>bind(fn)</li></ol> <h2 id="h2--strong-em-172-0-34-em-strong-"><a name="<strong><em> 第172题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第172题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>关于Java的接口,下面说法错误的是(</strong></p> <ol> <li>可以定义抽象方法</li><li>可以定义常量</li><li>可以定义普通方法</li><li>不可以进行实例化</li></ol> <h2 id="h2--strong-em-173-0-34-em-strong-"><a name="<strong><em> 第173题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第173题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列对SQL操作描述正确的是( )</strong></p> <ol> <li>SELECT一般用于数据查找操作</li><li>UPDATE一般用于表数据的更新操作</li><li>INSERT 一般用于添加表数据</li><li>DELETE 只能用于删除表操作</li></ol> <h2 id="h2--strong-em-174-0-34-em-strong-"><a name="<strong><em> 第174题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第174题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>查询姓名不是NULL的数据语法正确的是( )</strong></p> <ol> <li>WHERE NAME ! NULL</li><li>WHERE NAME NOT NULL</li><li>WHERE NAME IS NOT NULL</li><li>WHERE NAME!=NULL</li></ol> <h2 id="h2--strong-em-175-0-34-em-strong-"><a name="<strong><em> 第175题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第175题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在 jQuery 中,可以通过()方法为某个指定的元素设置样式值</strong></p> <ol> <li>css()</li><li>addCss()</li><li>class()</li><li>addClass()</li></ol> <h2 id="h2--strong-em-176-0-34-em-strong-"><a name="<strong><em> 第176题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第176题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>以下哪项用于显示内连接( )</strong></p> <ol> <li>left join</li><li>right join</li><li>cross join</li><li>inner join</li></ol> <h2 id="h2--strong-em-177-0-34-em-strong-"><a name="<strong><em> 第177题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第177题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>弹性布局中,属性“justify-content”的意思是()</strong></p> <ol> <li>主轴对齐</li><li>侧轴对齐</li><li>弹性模型对象的子元素出现的順序</li><li>项目的长度</li></ol> <h2 id="h2--strong-em-178-0-34-em-strong-"><a name="<strong><em> 第178题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第178题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>变量命名规范说法正确的是( )</strong></p> <ol> <li>变量由字母. 下划线. 数字. $符号随意组成</li><li>变量不能以数字作为开头</li><li>A和a在java中是同一个变量</li><li>不同类型的变量,可以起相同的名字</li></ol> <h2 id="h2--strong-em-179-0-34-em-strong-"><a name="<strong><em> 第179题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第179题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在Java中,关于构造方法,下列说法错误的是( )</strong></p> <ol> <li>构造方法的名称必须与类名相同</li><li>构造方法可以带参数</li><li>构造方法不可以重载</li><li>构造方法绝对不能有返回值</li></ol> <h2 id="h2--strong-em-180-0-34-em-strong-"><a name="<strong><em> 第180题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第180题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在CSS中为DIV设置如下样式,则该标签的实际宽度为()。div{width:200px;padding:0 20px;border:1px;}</strong></p> <ol> <li>200px</li><li>221px</li><li>240px</li><li>242px</li></ol> <h2 id="h2--strong-em-181-0-34-em-strong-"><a name="<strong><em> 第181题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第181题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中想要找到所有元素的同辈元素,下面哪一个是可以实现的?</strong></p> <ol> <li>eq(index)</li><li>find(expr)</li><li>siblings([expr])</li><li>next()</li></ol> <h2 id="h2--strong-em-182-0-34-em-strong-"><a name="<strong><em> 第182题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第182题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>要获取文档中指定标签名的HTML页面元素对象,应该使用document对象的()方法。</strong></p> <ol> <li>getElementById()</li><li>getElementsByName()</li><li>getElementsByTagName()</li><li>createElement()</li></ol> <h2 id="h2--strong-em-183-0-34-em-strong-"><a name="<strong><em> 第183题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第183题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列可以删除整个tb_student表数据的语句是( )。</strong></p> <ol> <li>delete * from tb_student</li><li>delete all tb_student</li><li>delete from tb_student</li><li>delete table tb_student</li></ol> <h2 id="h2--strong-em-184-0-34-em-strong-"><a name="<strong><em> 第184题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第184题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>MySql查询语句中,多个条件同时满足需使用( )关键字</strong></p> <ol> <li>OR</li><li>AND</li><li>&&</li><li>NOT</li></ol> <h2 id="h2--strong-em-185-0-34-em-strong-"><a name="<strong><em> 第185题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第185题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,用于获取匹配元素的HTML内容的方法是()。</strong></p> <ol> <li>html()</li><li>html(content)</li><li>text()</li><li>text(content)</li></ol> <h2 id="h2--strong-em-186-0-34-em-strong-"><a name="<strong><em> 第186题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第186题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下面代码的输出是什么?( ) const obj = { 1: “a”, 2: “b”, 3: “c” }; const set = new Set([1, 2, 3, 4, 5]); obj.hasOwnProperty(“1”); obj.hasOwnProperty(1); set.has(“1”); set.has(1);</strong></p> <ol> <li>false true false true</li><li>false true true true</li><li>true true false true</li><li>true true true true</li></ol> <h2 id="h2--strong-em-187-0-34-em-strong-"><a name="<strong><em> 第187题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第187题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>弹性布局中,属性“align-items”的意思是()</strong></p> <ol> <li>主轴对齐</li><li>侧轴对齐</li><li>弹性模型对象的子元素出现的順序</li><li>项目的长度</li></ol> <h2 id="h2--strong-em-188-0-34-em-strong-"><a name="<strong><em> 第188题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第188题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>创建一个对象obj,该对象包含一个名为”name”的属性,其值为”value” ,以下哪一段JavaScript代码无法得到上述的结果()。</strong></p> <ol> <li>var obj = new Object(); obj[“name”] = “value”;</li><li>var obj = new Object(); obj.prototype.name = “value”;</li><li>var obj = {name : “value”};</li><li>var obj = new function() { this.name = “value”;}</li></ol> <h2 id="h2--strong-em-189-0-34-em-strong-"><a name="<strong><em> 第189题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第189题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>jQuery访问对象中的size()方法的返回值和jQuery对象的()一样.</strong></p> <ol> <li>len 属性</li><li>len() 方法</li><li>length 属性</li><li>length() 方法</li></ol> <h2 id="h2--strong-em-190-0-34-em-strong-"><a name="<strong><em> 第190题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第190题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>以下关于索引的说法错误的是 ( )</strong></p> <ol> <li>索引的主要作用是提高查询效率</li><li>索引主要分为聚集索引和非聚集索引</li><li>一个表中的聚集索引和非聚集索引都可以创建多个</li><li>聚集索引的效率高于非聚集索引</li></ol> <h2 id="h2--strong-em-191-0-34-em-strong-"><a name="<strong><em> 第191题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第191题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,$(A).appendTo(B)用于()。</strong></p> <ol> <li>将 B 追加到 A 中</li><li>把 A 追加到 B 中</li><li>将 B 前置插入到 A 中</li><li>将 A 前置插入到 B 中</li></ol> <h2 id="h2--strong-em-192-0-34-em-strong-"><a name="<strong><em> 第192题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第192题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在 HTML5 中,分类导航或菜单等场合,适合使用()块结构</strong></p> <ol> <li>div-ul(ol)-li</li><li>div-dl-dt-dd</li><li>div-table-tr-td</li><li>div-form-table-tr-td</li></ol> <h2 id="h2--strong-em-193-0-34-em-strong-"><a name="<strong><em> 第193题 【单选题】【0.34分】【特性分析】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第193题 【单选题】【0.34分】【特性分析】</em></strong></h2><p><strong>JavaScript中要将IP地址“192.168.1.100”按”.”分割成4个字符串,应该使用哪个方法()。</strong></p> <ol> <li>split()</li><li>substr()</li><li>substring()</li><li>indexOf()</li></ol> <h2 id="h2--strong-em-194-0-34-em-strong-"><a name="<strong><em> 第194题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第194题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询语法中,媒体查询属性“device-aspect-ratio”表示的是()</strong></p> <ol> <li>定义’width’与’height’的比率</li><li>定义’device-width’与’device-height’的比率</li><li>每一组输出设备的彩色原件个数。如果不是彩色设备,则值等于0</li><li>设备的分辨率</li></ol> <h2 id="h2--strong-em-195-0-34-em-strong-"><a name="<strong><em> 第195题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第195题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,如果需要匹配包含文本的元素,用下面哪种来实现?</strong></p> <ol> <li>text()</li><li>contains()</li><li>input()</li><li>attr(name)</li></ol> <h2 id="h2--strong-em-196-0-34-em-strong-"><a name="<strong><em> 第196题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第196题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>为数据表创建索引的目的是( )</strong></p> <ol> <li>提高查询的检索性能</li><li>归类</li><li>穿件唯一约束</li><li>创建主键</li></ol> <h2 id="h2--strong-em-197-0-34-em-strong-"><a name="<strong><em> 第197题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第197题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>关于变量的初始化赋值,以下说法错误的是( )</strong></p> <ol> <li>所有的变量都可以自动地初始化为默认值</li><li>类中变量的赋值可以通过构造方法来完成</li><li>如果类中没有构造方法,则编译时会自动生成一个不带参数的构造方法,调用该构造方法初始化类对象时,将变量初始化为该类型的默认值</li><li>方法体中的局部变量必须先赋值后才能使用</li></ol> <h2 id="h2--strong-em-198-0-34-em-strong-"><a name="<strong><em> 第198题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第198题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>条件“IN(20,30,40)”表示( )</strong></p> <ol> <li>年龄在20到40之间</li><li>年龄在20到30之间</li><li>年龄是20或30或40</li><li>年龄在30到40之间</li></ol> <h2 id="h2--strong-em-199-0-34-em-strong-"><a name="<strong><em> 第199题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第199题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,如果想要从DOM中删除所有匹配的元素,下面哪一个是正确的?</strong></p> <ol> <li>delete()</li><li>empty()</li><li>remove()</li><li>removeAll()</li></ol> <h2 id="h2--strong-em-200-0-34-em-strong-"><a name="<strong><em> 第200题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第200题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>表达式(11+3*8)/4%3的值是( )</strong></p> <ol> <li>31</li><li>0</li><li>2</li><li>1</li></ol> <h2 id="h2--strong-em-201-0-34-em-strong-"><a name="<strong><em> 第201题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第201题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>模糊查询中用于匹配一个任何字符的是</strong></p> <ol> <li>_</li><li>*</li><li>@</li><li>&</li></ol> <h2 id="h2--strong-em-202-0-34-em-strong-"><a name="<strong><em> 第202题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第202题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,$(A).before(B)方法用于()。</strong></p> <ol> <li>表示将元素 B 插入到元素 A 之后</li><li>表示将元素 A 插入到元素 B 之后</li><li>表示将元素 B 插入至元素 A 之前</li><li>表示将元素 A 插入到元素 B 之前</li></ol> <h2 id="h2--strong-em-203-0-34-em-strong-"><a name="<strong><em> 第203题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第203题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询语法中,媒体查询属性“height”表示的是()</strong></p> <ol> <li>输出设备中的页面可见区域宽度</li><li>输出设备中的页面可见区域高度</li><li>输出设备的屏幕可见宽度</li><li>输出设备的屏幕可见高度</li></ol> <h2 id="h2--strong-em-204-0-34-em-strong-"><a name="<strong><em> 第204题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第204题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在SQL语言中,子查询是( )</strong></p> <ol> <li>选取单表中字段子集的查询语句</li><li>选取多表中字段子集的查询语句</li><li>返回单表中数据子集的查询语言</li><li>嵌入到另一个查询语句之中的查询语句</li></ol> <h2 id="h2--strong-em-205-0-34-em-strong-"><a name="<strong><em> 第205题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第205题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>JavaScript变量命名不正确的是()。</strong></p> <ol> <li>3name</li><li>_age</li><li>$gender</li><li>student_name</li></ol> <h2 id="h2--strong-em-206-0-34-em-strong-"><a name="<strong><em> 第206题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第206题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在java中下列关于自动类型转换说法正确的是( )</strong></p> <ol> <li>基本数据类型和String相加结果一定是字符串型</li><li>char类型和int类型相加结果一定是字符</li><li>double类型可以自动转换为int</li><li>char + int + double +”” 结果一定是double</li></ol> <h2 id="h2--strong-em-207-0-34-em-strong-"><a name="<strong><em> 第207题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第207题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下面不属于ajax事件的是()</strong></p> <ol> <li>ajaxComplete(callback)</li><li>ajaxSuccess(callback)</li><li>$.post(url)</li><li>ajaxSend(callback)</li></ol> <h2 id="h2--strong-em-208-0-34-em-strong-"><a name="<strong><em> 第208题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第208题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>典型的JDBC程序按( )顺序编写。 1. 释放资源 2. 获得与数据库的物理连接 3. 执行SQL语句 4. 加载数据库驱动 5. 创建不同类型的Statement 6. 如果有结果集,处理结果集</strong></p> <ol> <li>4->2->5->3->6->1</li><li>2->4->3->5->6->1</li><li>4->2->3->5->6->1</li><li>4->2->6->3->5->1</li></ol> <h2 id="h2--strong-em-209-0-34-em-strong-"><a name="<strong><em> 第209题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第209题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下面代码的输出是什么?( ) let number = 0; console.log(number++); console.log(++number); console.log(number);</strong></p> <ol> <li>1 1 2</li><li>1 2 2</li><li>0 2 2</li><li>0 1 2</li></ol> <h2 id="h2--strong-em-210-0-34-em-strong-"><a name="<strong><em> 第210题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第210题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,要将元素 B 前置插入到元素 A 中,使用的方法是()。</strong></p> <ol> <li>$(A).append(B)</li><li>$(A).appendTo(B)</li><li>$(A).prepend(B)</li><li>$(A).prependTo(B)</li></ol> <h2 id="h2--strong-em-211-0-34-em-strong-"><a name="<strong><em> 第211题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第211题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列说法错误的是( )</strong></p> <ol> <li>Java程序的main方法必须写在类里面</li><li>Java程序中只能有一个main方法</li><li>Java程序中类名必须与文件名一样</li><li>Java程序的main方法中如果只有一条语句,可以不用{}括起来</li></ol> <h2 id="h2--strong-em-212-0-34-em-strong-"><a name="<strong><em> 第212题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第212题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>MySQl安装完毕后为什么要配置环境变量( )</strong></p> <ol> <li>为了在任何地方使用MySQl命令</li><li>为了启动MySQl服务</li><li>为了关闭MySQl服务</li><li>为了安装连接软件</li></ol> <h2 id="h2--strong-em-213-0-34-em-strong-"><a name="<strong><em> 第213题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第213题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询的基本语法中,限定某种设备可以使用()运算符</strong></p> <ol> <li>and</li><li>or</li><li>not</li><li>only</li></ol> <h2 id="h2--strong-em-214-0-34-em-strong-"><a name="<strong><em> 第214题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第214题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列关于构造方法,说法正确的是( )</strong></p> <ol> <li>如果不编写构造方法,系统会自动提供无参构造方法</li><li>构造方法必须有返回值</li><li>构造方法不可以访问类的非静态成员</li><li>构造方法必须初始化类的所有数据成员</li></ol> <h2 id="h2--strong-em-215-0-34-em-strong-"><a name="<strong><em> 第215题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第215题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>如需为超级链接添加下划线,下列语法正确的是()。</strong></p> <ol> <li>a{text-decoration: underline}</li><li>a{underline:none}</li><li>a{decoration:no underline}</li><li>a{text-decoration:none}</li></ol> <h2 id="h2--strong-em-216-0-34-em-strong-"><a name="<strong><em> 第216题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第216题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询语法中,可用设备名参数“projection”表示的是()</strong></p> <ol> <li>演讲</li><li>固定字母间距的网格媒体,比如电传打印机</li><li>项目演示,比如幻灯片</li><li>彩色电脑屏幕</li></ol> <h2 id="h2--strong-em-217-0-34-em-strong-"><a name="<strong><em> 第217题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第217题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询语法中,可用设备名参数“braille”表示的是()</strong></p> <ol> <li>文档打印或打印预览模式</li><li>项目演示,比如幻灯片</li><li>盲文</li><li>手持设备</li></ol> <h2 id="h2--strong-em-218-0-34-em-strong-"><a name="<strong><em> 第218题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第218题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>如果要在一张职工表中限制员工信息不重复,应使用( )完整性</strong></p> <ol> <li>实体完整性</li><li>域完整性</li><li>引用完整性</li><li>以上都不对</li></ol> <h2 id="h2--strong-em-219-0-34-em-strong-"><a name="<strong><em> 第219题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第219题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,text()方法用于()</strong></p> <ol> <li>获取匹配元素的HTML内容</li><li>设置匹配元素的HTML内容</li><li>获取匹配元素的文本内容</li><li>设置匹配元素的文本内容</li></ol> <h2 id="h2--strong-em-220-0-34-em-strong-"><a name="<strong><em> 第220题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第220题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>MySql是( )种结构的数据库</strong></p> <ol> <li>关系型</li><li>对象型</li><li>网状型</li><li>紧凑型</li></ol> <h2 id="h2--strong-em-221-0-34-em-strong-"><a name="<strong><em> 第221题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第221题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>有三个表,它们的记录行数分别是10行、2行和6行,三个表进行交叉连接后,结果集中共有( )行数据</strong></p> <ol> <li>18</li><li>26</li><li>120</li><li>不确定</li></ol> <h2 id="h2--strong-em-222-0-34-em-strong-"><a name="<strong><em> 第222题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第222题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在 HTML5 中,关于 table 布局,说法错误的是()</strong></p> <ol> <li>table 布局相比 DIV+CSS 布局来说缺点较多</li><li>DIV+CSS 常用于搭建网页的整体框架</li><li>在搭建网页的整体框架时,应当放弃使用 table 布局</li><li>table 常用于局部布局,如规整数据的显示</li></ol> <h2 id="h2--strong-em-223-0-34-em-strong-"><a name="<strong><em> 第223题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第223题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,下面哪一个是用来追加到指定元素的末尾的?</strong></p> <ol> <li>insertAfter()</li><li>append()</li><li>appendTo()</li><li>after()</li></ol> <h2 id="h2--strong-em-224-0-34-em-strong-"><a name="<strong><em> 第224题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第224题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>MYSQL语句中注释关键字是</strong></p> <ol> <li>//</li><li>/*</li><li>--</li><li><!—</li></ol> <h2 id="h2--strong-em-225-0-34-em-strong-"><a name="<strong><em> 第225题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第225题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在查询语句的where子句中,如果出现了“age between 30 and 40”,这个表达式等同于( )</strong></p> <ol> <li>age>=30 and age<=40</li><li>age>=30 or age<=40</li><li>age>30 and age<40</li><li>age>30 or age<40</li></ol> <h2 id="h2--strong-em-226-0-34-em-strong-"><a name="<strong><em> 第226题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第226题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,html()方法用于()</strong></p> <ol> <li>获取匹配元素的HTML内容</li><li>设置匹配元素的HTML内容</li><li>获取匹配元素的文本内容</li><li>设置匹配元素的文本内容</li></ol> <h2 id="h2--strong-em-227-0-34-em-strong-"><a name="<strong><em> 第227题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第227题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下面代码的输出是什么?( ) const a = {}; const b = { key: “b” }; const c = { key: “c” }; a[b] = 123; a[c] = 456; console.log(a[b]);</strong></p> <ol> <li>123</li><li>456</li><li>undefined</li><li>ReferenceError</li></ol> <h2 id="h2--strong-em-228-0-34-em-strong-"><a name="<strong><em> 第228题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第228题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,如果想要找到一个表格的指定行数的元素,用下面哪个方法可以快速找到指定元素?</strong></p> <ol> <li>text()</li><li>get()</li><li>eq()</li><li>contents()</li></ol> <h2 id="h2--strong-em-229-0-34-em-strong-"><a name="<strong><em> 第229题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第229题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询语法中,可用设备名参数“tty”表示的是()</strong></p> <ol> <li>所有设备</li><li>盲文</li><li>固定字母间距的网格媒体,比如电传打印机</li><li>电视</li></ol> <h2 id="h2--strong-em-230-0-34-em-strong-"><a name="<strong><em> 第230题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第230题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>使用Java语言的执行文件的文件扩展名是( )</strong></p> <ol> <li>.class</li><li>.java</li><li>.html</li><li>.jsp</li></ol> <h2 id="h2--strong-em-231-0-34-em-strong-"><a name="<strong><em> 第231题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第231题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>delete from employee语句的作用是( )</strong></p> <ol> <li>删除当前数据库中整个employee表,包括表结构</li><li>删除当前数据库中employee表内的所有行</li><li>由于没有where子句,因此不删除任何数据</li><li>删除当前数据库中employee表内的当前行</li></ol> <h2 id="h2--strong-em-232-0-34-em-strong-"><a name="<strong><em> 第232题 【单选题】【0.34分】【特性分析】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第232题 【单选题】【0.34分】【特性分析】</em></strong></h2><p><strong>JavaScript要实现弹出一个带“确定”和“取消”按钮的对话框,应该使用window对象的哪个方法()。</strong></p> <ol> <li>alert</li><li>prompt</li><li>confirm</li><li>open</li></ol> <h2 id="h2--strong-em-233-0-34-em-strong-"><a name="<strong><em> 第233题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第233题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>UNIQUE唯一索引的作用是( )</strong></p> <ol> <li>保证各行在该索引上的值都不得重复</li><li>保证各行在该索引上的值不得为NULL</li><li>保证参加唯一索引的各列,不得再参加其他的索引</li><li>保证唯一索引不能被删除</li></ol> <h2 id="h2--strong-em-234-0-34-em-strong-"><a name="<strong><em> 第234题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第234题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>UNIQUE唯一索引的作用是( )</strong></p> <ol> <li>保证各行在该索引上的值都不得重复</li><li>保证各行在该索引上的值不得为NULL</li><li>保证参加唯一索引的各列,不得再参加其他的索引</li><li>保证唯一索引不能被删除</li></ol> <h2 id="h2--strong-em-235-0-34-em-strong-"><a name="<strong><em> 第235题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第235题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>以下操作中属于表结构操作的是( )</strong></p> <ol> <li>create table user (id int primary key,name varchar(20));</li><li>show tables;</li><li>drop table user;</li><li>alter table user add age int;</li></ol> <h2 id="h2--strong-em-236-0-34-em-strong-"><a name="<strong><em> 第236题 【单选题】【0.34分】【特性分析】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第236题 【单选题】【0.34分】【特性分析】</em></strong></h2><p><strong>要选择id=’div1’所有span子元素,请选出正确的选择器()</strong></p> <ol> <li>$(‘#div1 span’)</li><li>$(‘#div1>span’)</li><li>$(‘#div1+span’)</li><li>$(‘#div1~span’)</li></ol> <h2 id="h2--strong-em-237-0-34-em-strong-"><a name="<strong><em> 第237题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第237题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询语法中,可用设备名参数表示“手持设备”的是</strong></p> <ol> <li>handheld</li><li>print</li><li>projection</li><li>screen</li></ol> <h2 id="h2--strong-em-238-0-34-em-strong-"><a name="<strong><em> 第238题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第238题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在 CSS3 中,需要表格折叠边框,应当使用的代码是()</strong></p> <ol> <li>table { border-collapse:collapse; }</li><li>table { border-radius:collapse; }</li><li>table { border:collapse; }</li><li>table { border:none; }</li></ol> <h2 id="h2--strong-em-239-0-34-em-strong-"><a name="<strong><em> 第239题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第239题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在 HTML5 中,布局表单的场合,适合使用()块结构</strong></p> <ol> <li>div-ul(ol)-li</li><li>div-dl-dt-dd</li><li>div-table-tr-td</li><li>div-form-table-tr-td</li></ol> <h2 id="h2--strong-em-240-0-34-em-strong-"><a name="<strong><em> 第240题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第240题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>CSS3中新出现的多列布局是传统块状布局模式的有力扩充,使用 column-fill 属性的意义是()。</strong></p> <ol> <li>指定内容在列与列之间的分布方式</li><li>指定列之间的距离</li><li>指定元素横向能跨多少列</li><li>指定列数</li></ol> <h2 id="h2--strong-em-241-0-34-em-strong-"><a name="<strong><em> 第241题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第241题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>编写JavaScript代码实现当浏览器的垂直滚动条移动时,id值为“divid”的DIV的垂直位置始终位于浏览器顶端,下列选项中()是正确的。 <div id=”divid”><ing src=”pic.jpg”/></div></strong></p> <ol> <li>document.getElementById(“divid”).top=0;</li><li>document.getElementById(“divid”).pixelTop= document.body.scrollTop;</li><li>document.getElementById(“divid”).pixelTop=0;</li><li>document.getElementById(“divid”).style.pixelTop= document.body.scrollTop;</li></ol> <h2 id="h2--strong-em-242-0-34-em-strong-"><a name="<strong><em> 第242题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第242题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>关于Java构造方法,描述错误的是( )。</strong></p> <ol> <li>构造方法的返回类型只能是void型</li><li>构造方法是类的一种特殊方法,它的方法名必须与类名相同</li><li>构造方法的主要作用是完成对类的对象的初始化工作</li><li>一般在创建新对象时,系统会自动调用构造方法</li></ol> <h2 id="h2--strong-em-243-0-34-em-strong-"><a name="<strong><em> 第243题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第243题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询语法中,媒体查询属性“resolution”表示的是()</strong></p> <ol> <li>每一组输出设备的彩色原件个数。如果不是彩色设备,则值等于0</li><li>设备的分辨率</li><li>定义’width’与’height’的比率</li><li>定义’device-width’与’device-height’的比率</li></ol> <h2 id="h2--strong-em-244-0-34-em-strong-"><a name="<strong><em> 第244题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第244题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>UPDATE命令属于( )操作</strong></p> <ol> <li>DDL</li><li>DML</li><li>DCL</li><li>DQL</li></ol> <h2 id="h2--strong-em-245-0-34-em-strong-"><a name="<strong><em> 第245题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第245题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>弹性布局中,属性“flex-basis”的意思是()</strong></p> <ol> <li>主轴对齐</li><li>侧轴对齐</li><li>弹性模型对象的子元素出现的順序</li><li>项目的长度</li></ol> <h2 id="h2--strong-em-246-0-34-em-strong-"><a name="<strong><em> 第246题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第246题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询语法中,可用设备名参数“tv”表示的是()</strong></p> <ol> <li>盲文</li><li>手持设备</li><li>电视</li><li>所有设备</li></ol> <h2 id="h2--strong-em-247-0-34-em-strong-"><a name="<strong><em> 第247题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第247题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在 jQuery 中,可以通过()方法删除元素类样式</strong></p> <ol> <li>class()</li><li>remove()</li><li>removeClass()</li><li>deleteClass()</li></ol> <h2 id="h2--strong-em-248-0-34-em-strong-"><a name="<strong><em> 第248题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第248题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在 HTML5 中,<label> 标签的()属性,用于设定表单控件获得焦点的热键。</strong></p> <ol> <li>id</li><li>for</li><li>accesskey</li><li>shortcut</li></ol> <h2 id="h2--strong-em-249-0-34-em-strong-"><a name="<strong><em> 第249题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第249题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>编写线程类,可以通过实现那个接口来实现( )</strong></p> <ol> <li>Runnable</li><li>Throwable</li><li>Serializable</li><li>Comparable</li></ol> <h2 id="h2--strong-em-250-0-34-em-strong-"><a name="<strong><em> 第250题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第250题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>弹性布局中,属性“order”的意思是()</strong></p> <ol> <li>主轴对齐</li><li>侧轴对齐</li><li>弹性模型对象的子元素出现的順序</li><li>项目的长度</li></ol> <h2 id="h2--strong-em-251-0-34-em-strong-"><a name="<strong><em> 第251题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第251题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,下面代码执行结果为() <b>Hello</b><p>I’m lucy.</p> $(“b”).clone().prependTo(“p”);</strong></p> <ol> <li><b>Hello<p>I’m lucy.</p></b></li><li><p><b>Hello</b>I’m lucy.</p></li><li><b>Hello</b><p><b>Hello</b>I’m lucy.</p></li><li><b>Hello</b><p>I’m lucy.<b>Hello</b></p></li></ol> <h2 id="h2--strong-em-252-0-34-em-strong-"><a name="<strong><em> 第252题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第252题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在 SQL 语句中,排序的关键字是( )</strong></p> <ol> <li>having</li><li>order</li><li>where</li><li>select</li></ol> <h2 id="h2--strong-em-253-0-34-em-strong-"><a name="<strong><em> 第253题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第253题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>H7 响应式布局中,视口的相关属性设置,maximum-scale 属性的作用是</strong></p> <ol> <li>设置页面的初始缩放值为一个数字,可以带小数</li><li>允许用户的最小缩放值为一个数字,可以带小数</li><li>允许用户的最大缩放值为一个数字,可以带小数</li><li>是否允许用户进行缩放,值为“no”或“yes”</li></ol> <h2 id="h2--strong-em-254-0-34-em-strong-"><a name="<strong><em> 第254题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第254题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询语法中,可用设备名参数表示“彩色电脑屏幕”的是</strong></p> <ol> <li>screen</li><li>speech</li><li>tty</li><li>tv</li></ol> <h2 id="h2--strong-em-255-0-34-em-strong-"><a name="<strong><em> 第255题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第255题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>蓄所有多个储户,储户能够在多个储蓄所存取款,储蓄所与储户之间是( )</strong></p> <ol> <li>一对一</li><li>一对多</li><li>多对一</li><li>多对多</li></ol> <h2 id="h2--strong-em-256-0-34-em-strong-"><a name="<strong><em> 第256题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第256题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>关于下面几个类的继承关系说法正确的是( )</strong></p> <ol> <li>Dog 是 Animal 的父类</li><li>Animal 是 MinDog 的子类</li><li>编译错误</li><li>Animal 是 Dog 的父类</li></ol> <h2 id="h2--strong-em-257-0-34-em-strong-"><a name="<strong><em> 第257题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第257题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>MYSQL中用于表示年月日时分秒的数据类型是</strong></p> <ol> <li>date</li><li>string</li><li>varchar</li><li>datetime</li></ol> <h2 id="h2--strong-em-258-0-34-em-strong-"><a name="<strong><em> 第258题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第258题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>给定如下Java代码,在横线处新增( )方法可以实现对test方法的重载。 public class Test{ public void test(int x, int y) { } ___ }</strong></p> <ol> <li>public int test(int x, int y){ return 0; }</li><li>public int test(int x, double y){ return 0; }</li><li>public void test(int x, int z){ }</li><li>public void test(int y, int x){ }</li></ol> <h2 id="h2--strong-em-259-0-34-em-strong-"><a name="<strong><em> 第259题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第259题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下面代码的输出是什么?( ) let obj1 = { name: ‘obj1_name’, print: function () { return () => console.log(this.name); } } let obj2 = { name: ‘obj2_name’ }; obj1.print()(); obj1.print().call(obj2); obj1.print.call(obj2)();</strong></p> <ol> <li>obj1_name obj2_name obj2_name</li><li>obj2_name obj1_name obj2_name</li><li>obj1_name obj1_name obj2_name</li><li>无输出</li></ol> <h2 id="h2--strong-em-260-0-34-em-strong-"><a name="<strong><em> 第260题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第260题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列有关单例模式的描述,说法错误的是( )</strong></p> <ol> <li>单例类确保自己只有一个实例</li><li>在单例类中生成实例的构造方法的访问修饰符只能是public</li><li>单例类必须保证只能由自身创建自己的实例</li><li>单例类必须能为其他对象提供唯一的实例</li></ol> <h2 id="h2--strong-em-261-0-34-em-strong-"><a name="<strong><em> 第261题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第261题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询语法中,媒体查询属性“device-width”表示的是()</strong></p> <ol> <li>输出设备中的页面可见区域宽度</li><li>输出设备中的页面可见区域高度</li><li>输出设备的屏幕可见宽度</li><li>输出设备的屏幕可见高度</li></ol> <h2 id="h2--strong-em-262-0-34-em-strong-"><a name="<strong><em> 第262题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第262题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>以下可以正确从tb_student学生表中查询出姓“张”的同学信息SQL语句是 ( )</strong></p> <ol> <li>select * from tb_student where name = ‘张’</li><li>select * from tb_student where name like ‘张’</li><li>select * from tb_student where name like ‘张%’</li><li>select * from tb_student where name like ‘%张%’</li></ol> <h2 id="h2--strong-em-263-0-34-em-strong-"><a name="<strong><em> 第263题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第263题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列关于Java中集合描述错误的是( )</strong></p> <ol> <li>ArrayList内部采用数组实现数据存储</li><li>ArrayList在删除、插入元素时效率高于LinkedList</li><li>LinkedList在删除、插入元素时效率高于ArrayList</li><li>ArrayList循环遍历上效率高于LinkedList</li></ol> <h2 id="h2--strong-em-264-0-34-em-strong-"><a name="<strong><em> 第264题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第264题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列代码输出结果是( ) int i = 10; while (i > 0){ i = i + 1; if (i==10){ break; } }</strong></p> <ol> <li>while循环执行10次</li><li>死循环</li><li>一次都不循环</li><li>只循环一次</li></ol> <h2 id="h2--strong-em-265-0-34-em-strong-"><a name="<strong><em> 第265题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第265题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在 CSS3 中,#FF330 指代某种偏()的颜色</strong></p> <ol> <li>红</li><li>绿</li><li>蓝</li><li>黄</li></ol> <h2 id="h2--strong-em-266-0-34-em-strong-"><a name="<strong><em> 第266题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第266题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询语法中,可用设备名参数表示“电视”的是</strong></p> <ol> <li>tv</li><li>all</li><li>braille</li><li>handheld</li></ol> <h2 id="h2--strong-em-267-0-34-em-strong-"><a name="<strong><em> 第267题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第267题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在 HTML5 中,提供了 <label> 标签,可用于()</strong></p> <ol> <li>美化表单布局</li><li>改善表单交互问题</li><li>作为表单的标题出现</li><li>对表单元素进行分组</li></ol> <h2 id="h2--strong-em-268-0-34-em-strong-"><a name="<strong><em> 第268题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第268题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>执行带参数的存储过程,下列方法正确的是( )。</strong></p> <ol> <li>过程名 参数</li><li>过程名 (参数)</li><li>过程名== 参数</li><li>过程名->参数</li></ol> <h2 id="h2--strong-em-269-0-34-em-strong-"><a name="<strong><em> 第269题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第269题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下面哪一个不是jQuery对象访问的方法?</strong></p> <ol> <li>each(callback)</li><li>size()</li><li>index(subject)</li><li>index()</li></ol> <h2 id="h2--strong-em-270-0-34-em-strong-"><a name="<strong><em> 第270题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第270题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>数组下标越界异常为( )</strong></p> <ol> <li>RuntimeException</li><li>IOException</li><li>ArrayIndexOutOfBoundsException</li><li>ClassCastException</li></ol> <h2 id="h2--strong-em-271-0-34-em-strong-"><a name="<strong><em> 第271题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第271题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>例如数据库中有A表,包括学生,学科,成绩三个字段 , 数据库结构为 学生 学科 成绩 张三 语文 60 张三 数学 100 李四 语文 70 李四 数学 80 李四 英语 80 如何统计最高分>80的学科( )</strong></p> <ol> <li>SELECT MAX(成绩) FROM A GROUP BY学科 HAVING MAX(成绩)>80;</li><li>SELECT学科 FROM A GROUP BY学科 HAVING成绩>80;</li><li>SELECT学科 FROM A GROUP BY学科 HAVING MAX(成绩)>80;</li><li>SELECT学科 FROM A GROUP BY学科 WHERE MAX(成绩)>80;</li></ol> <h2 id="h2--strong-em-272-0-34-em-strong-"><a name="<strong><em> 第272题 【单选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第272题 【单选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,如果想要获取当前窗口的宽度值,下面哪个是实现该功能的?</strong></p> <ol> <li>width()</li><li>width(val)</li><li>width</li><li>innerWidth()</li></ol> <h2 id="h2--strong-em-273-0-34-em-strong-"><a name="<strong><em> 第273题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第273题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>多表连接的方式有( )</strong></p> <ol> <li>交叉连接</li><li>内连接</li><li>左外连接</li><li>右外连接</li></ol> <h2 id="h2--strong-em-274-0-34-em-strong-"><a name="<strong><em> 第274题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第274题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列说法正确的是( )</strong></p> <ol> <li>GROUP BY 子句用来分组 WHERE 子句的输出</li><li>WHERE 子句用来筛选 FROM 子句中指定的操作所产生的行。</li><li>HAVING 子句在聚合后对组记录进行筛选</li><li>HAVING 子句用来从FROM的结果中筛选行</li></ol> <h2 id="h2--strong-em-275-0-34-em-strong-"><a name="<strong><em> 第275题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第275题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在jQuery中,下面哪几个不是属于jQuery的事件处理?</strong></p> <ol> <li>bind(type)</li><li>click()</li><li>change()</li><li>one(type)</li></ol> <h2 id="h2--strong-em-276-0-34-em-strong-"><a name="<strong><em> 第276题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第276题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在Java中下列哪种异常是运行时异常( )</strong></p> <ol> <li>NullPointerException</li><li>ClassCastException</li><li>FileNotFoundException</li><li>IndexOutOfBoundsException</li></ol> <h2 id="h2--strong-em-277-0-34-em-strong-"><a name="<strong><em> 第277题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第277题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在Java中下列哪种异常是运行时异常( )。</strong></p> <ol> <li>NullPointerException</li><li>ClassCastException</li><li>FileNotFoundException</li><li>IndexOutOfBoundsException</li></ol> <h2 id="h2--strong-em-278-0-34-em-strong-"><a name="<strong><em> 第278题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第278题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>关于Java构造方法,描述错误的是( )</strong></p> <ol> <li>每个类只能有一个构造方法</li><li>构造方法名可以和类名不同</li><li>构造方法的主要作用是完成对类的对象的初始化工作</li><li>一般在创建新对象时,系统会自动调用构造方法</li></ol> <h2 id="h2--strong-em-279-0-34-em-strong-"><a name="<strong><em> 第279题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第279题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列关于字符串的描叙中错误的是( )</strong></p> <ol> <li>字符串是对象</li><li>String对象存储字符串的效率比StringBuffer高</li><li>可以使用StringBuffer sb=”这里是字符串”声明并初始化StringBuffer对象sb</li><li>String类提供了许多用来操作字符串的方法:连接,提取,查询等</li></ol> <h2 id="h2--strong-em-280-0-34-em-strong-"><a name="<strong><em> 第280题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第280题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下面关于数组的说法中,错误的是( )【选两项】</strong></p> <ol> <li>在类中声明一个整数数组作为成员变量,如果没有给它赋值,数值元素值为空</li><li>数组可以在内存空间连续存储任意一组数据</li><li>数组必须先声明,然后才能使用</li><li>数组本身是一个对象</li></ol> <h2 id="h2--strong-em-281-0-34-em-strong-"><a name="<strong><em> 第281题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第281题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>关于类的描叙正确的是( )</strong></p> <ol> <li>在类中定义的变量称为类的成员变量,在别的类中可以直接使用</li><li>局部变量的作用范围仅仅在定义它的方法内,或者是在定义它的控制流块中</li><li>使用别的类的方法仅仅需要引用方法的名字即可</li><li>一个类的方法使用该类的另一个方法时可以直接引用方法名</li></ol> <h2 id="h2--strong-em-282-0-34-em-strong-"><a name="<strong><em> 第282题 【多选题】【0.34分】【结果判断】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第282题 【多选题】【0.34分】【结果判断】</em></strong></h2><p><strong>在HTML文档中包含如下超链接: <a href="\#" οnmοuseοver="this.style.color=′red′" οnmοuseοut="this.style.color=′blue′"/>返回</a> 下列选项中,对此链接描述正确的有( )。</strong></p> <ol> <li>当鼠标移入此链接时,超链接文本颜色变为红色</li><li>当鼠标移入此链接时,超链接文本颜色变为蓝色</li><li>当鼠标移出此链接时,超链接文本颜色变为红色</li><li>当鼠标移出此链接时,超链接文本颜色变为蓝色</li></ol> <h2 id="h2--strong-em-283-0-34-em-strong-"><a name="<strong><em> 第283题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第283题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列关于Java面向对象的说法错误的是( )</strong></p> <ol> <li>类是对象创建的实例</li><li>对象是类创建的实例</li><li>一个类只能创建一个对象</li><li>一个类可以创建若干个对象</li></ol> <h2 id="h2--strong-em-284-0-34-em-strong-"><a name="<strong><em> 第284题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第284题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询可以获取的值有()</strong></p> <ol> <li>设备比例</li><li>对象颜色或颜色列表</li><li>设备的分辨率</li><li>画面比例</li></ol> <h2 id="h2--strong-em-285-0-34-em-strong-"><a name="<strong><em> 第285题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第285题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>针对模糊查询正确的是( )</strong></p> <ol> <li>使用关键字like</li><li>匹配多个字符使用”%”</li><li>匹配多个字符使用”_”</li><li>匹配单个字符使用”_”</li></ol> <h2 id="h2--strong-em-286-0-34-em-strong-"><a name="<strong><em> 第286题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第286题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列哪些列类型是数值型的数据( )。</strong></p> <ol> <li>DOUBLE</li><li>INT</li><li>SET</li><li>FLOAT</li></ol> <h2 id="h2--strong-em-287-0-34-em-strong-"><a name="<strong><em> 第287题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第287题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>关于Java构造方法,描述错误的是</strong></p> <ol> <li>构造方法没有返回值类型</li><li>构造方法是类的一种特殊方法,它的方法名必须与类名相同</li><li>构造方法必须要设定参数</li><li>系统不会自动生成构造方法</li></ol> <h2 id="h2--strong-em-288-0-34-em-strong-"><a name="<strong><em> 第288题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第288题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列关于抛出异常的描述中,错误的说法有( )</strong></p> <ol> <li>捕捉到的异常既可以在当前方法中处理,也可以由当前方法的调用方法进行处理</li><li>在方法声明时指定可能抛出的异常,需要在声明方法时使用throw语句</li><li>在方法中抛出异常,需使用throw语句</li><li>有多个catch块时,注意将父类异常的catch块放在子类异常catch块的前面</li></ol> <h2 id="h2--strong-em-289-0-34-em-strong-"><a name="<strong><em> 第289题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第289题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>响应式布局的优点有()</strong></p> <ol> <li>面对不同分辨率设备时,灵活性较强</li><li>代码简单</li><li>能够快捷解决多设备显示适应问题</li><li>运行效率提高</li></ol> <h2 id="h2--strong-em-290-0-34-em-strong-"><a name="<strong><em> 第290题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第290题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>Java的多态性主要表现在( )。【选两项】</strong></p> <ol> <li>重写</li><li>重载</li><li>接口</li><li>抽象类</li></ol> <h2 id="h2--strong-em-291-0-34-em-strong-"><a name="<strong><em> 第291题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第291题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在Java中,关于HashMap类的描述,下列说法错误的是( )。【选两项】</strong></p> <ol> <li>HashMap使用键/值的形式保存数据</li><li>HashMap能够保证其中元素的顺序</li><li>HashMap的key和value不能为null</li><li>HashMap通过get(key)获取对应的值</li></ol> <h2 id="h2--strong-em-292-0-34-em-strong-"><a name="<strong><em> 第292题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第292题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>媒体查询可以获取的值有()</strong></p> <ol> <li>设备的宽和高</li><li>渲染窗口的宽和高</li><li>设备的手持方向</li><li>画面比例</li></ol> <h2 id="h2--strong-em-293-0-34-em-strong-"><a name="<strong><em> 第293题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第293题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>下列哪个SQL语句关键字属于DDL语句?( )</strong></p> <ol> <li>CREATE</li><li>GRANT</li><li>SELECT</li><li>INSERT</li></ol> <h2 id="h2--strong-em-294-0-34-em-strong-"><a name="<strong><em> 第294题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第294题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>响应式布局的缺点有()</strong></p> <ol> <li>兼容各种设备,工作量大,效率低下</li><li>代码累赘,加载时间加长</li><li>因多方面因素影响而达不到最佳效果</li><li>一定程度上改变了网站原有的布局结构,会出现用户混淆的情况</li></ol> <h2 id="h2--strong-em-295-0-34-em-strong-"><a name="<strong><em> 第295题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第295题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>以下哪两个语句可以查询年龄在18到25岁(包含18和25岁)之间的学生信息( )。【选两项】</strong></p> <ol> <li>select * from tb_student where age > 18 and age < 25</li><li>select * from tb_student where age >= 18 and age <= 25</li><li>select * from tb_student where age >= 18 or age <= 25</li><li>select * from tb_student where age between 18 and 25</li></ol> <h2 id="h2--strong-em-296-0-34-em-strong-"><a name="<strong><em> 第296题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第296题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>Java的多态性主要表现在( )</strong></p> <ol> <li>重载</li><li>重写</li><li>接口</li><li>抽象类</li></ol> <h2 id="h2--strong-em-297-0-34-em-strong-"><a name="<strong><em> 第297题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第297题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>以下可以正确运行的查询语句有( )</strong></p> <ol> <li>select * from user ;</li><li>select * from user where username =’李四’;</li><li>select * from user where 1=1;</li><li>select distinct * from user;</li></ol> <h2 id="h2--strong-em-298-0-34-em-strong-"><a name="<strong><em> 第298题 【多选题】【0.34分】【概念理解】</em></strong>" class="reference-link"></a><span class="header-link octicon octicon-link"></span><strong><em> 第298题 【多选题】【0.34分】【概念理解】</em></strong></h2><p><strong>在Java中下列哪种异常是运行时异常( )。【选三项】</strong></p> <ol> <li>NullPointerException</li><li>ClassCastException</li><li>FileNotFoundException</li><li>IndexOutOfBoundsException</li></ol>
还没有评论,来说两句吧...