A. 请求已接收 B. 服务器链接已经建立 C. 请求已经完成 D. 未初始化
A. select * from 学生 where 性别='男' and 班级编号 == (select 班级编号 from 班级 where 班主任='王笑笑') B. select * from 学生 where 性别='男' and 班级编号 in (select 班级编号 from 班级 where 班主任='王笑笑') C. select * from 学生 where 性别='男' and 班级编号 union (select 班级编号 from 班级 where 班主任='王笑笑') D. select * from 学生 where 性别='男' and 班级编号 as (select 班级编号 from 班级 where 班主任='王笑笑')
A. CREATE DATABASE IF EXISTS `test` B. CREATE IF NOT EXISTS `test` CREATE DATABASE IF NOT EXISTS `test` D. CREATE IF NOT EXISTS `test` DATABASE
A. JOIN B. UNION C. ALL D. FULL
A. SHOW DATABASES; B. SHOW TABLES; C. DESCRIBE DATABASES; DISPLAY LIBRARIES;
A. 1kb B. 2kb C. 3kb D. 4kb
A. var obj = [name:"zhangsan",show:function(){alert(name);}]; B. var obj = {name:"zhangsan",show:"alert(this.name)"}; C. var obj = {name:"zhangsan",show:function(){alert(name);; D. var obj = {name:"zhangsan",show:function(){alert(this.name);;
A. 用get请求,需要令牌验证; B. 用post的请求,需要令牌验证,在表单中加入{{ csrf_field() }}或者@csrf; C. 用get 和post请求,都不要需要令牌验证; D. 以上说法都不正确; 二、多选题(每小题2分,共15小题,共30分)
A. scale B. skew C. translate D. rotate E. tansition
A. session 和 cookie 都可以记录数据状态。 B. 在设置session 和cookie 之前不能有输出。 C. 在使用cookie 前要使用 cookie_start()函数初始。 D. 在使用session 前要使用 session_start()函数初始。