【判断题】
提出"不平则鸣"创作口号的是柳宗元。
A. 对
B. 错
查看试卷,进入试卷练习
微信扫一扫,开始刷题

答案
B
解析
暂无解析
相关试题
【单选题】
With increased taxation and rising prices, I am going to have to __________ on quite a lot of things – clothes, records and so on.___
A. cut off
B. cut in
C. cut out
D. cut down
【单选题】
There is very ___ hope that she will pass the exam.___
A. few
B. small
C. much
D. little
【单选题】
I am not sure whether we can give the right advice _____emergency.___
A. on account of
B. in case of
C. at the risk of
D. in spite of
【单选题】
In their letter to the students’ representative assembly, the freshmen insisted on __________ in the Student Union.___
A. represented
B. being represented
C. having represented
D. have been represented
【单选题】
Nobody noticed the thief slip into the house because the lights happened to _____.___
A. be put up
B. give in
C. be turned on
D. go out
【单选题】
----- John, may I ask you a favour? ----- _________
A. I’m sorry, but why?
B. Sure,what is it?
C. Yes,you could.
D. I’d love to,and I’m busy.
【单选题】
The two thieves fled the town separately, _______ a bag.___
A. each carrying
B. whose that watch is
C. whose watch is that
D. whose watch is
【单选题】
Her heart _____ faster when she entered the exam hall.___
A. jumped
B. sank
C. beat
D. hit
【单选题】
The taxi driver was put in_____prison because his car had knocked down a child.His wife went to_____ prison to see him twice a month.___
A. /; /
B. the; the
C. /; the
D. the; /
【单选题】
----- Where’s John, do you know? ----- Oh, _____to hospital.___
A. he’s taken
B. he’ll be taken
C. he’s been taken
D. he’ll take
【单选题】
It was the wealth of the_____pioneer landowner John Harvard that made Harvard University possible.___
A. precious
B. curious
C. anxious
D. prosperous
推荐试题
【多选题】
(专基_Js)以下哪些方法返回的结果是boolean型或者转换boolean型的( )。___
A. : if()
B. : typeof()
C. : isNaN()
D. : parseInt()
【多选题】
(专基_Js)以下可以弹出执行的语句有( )。___
A. : var a = 1; if(a===1){alert("执行")}
B. : var a = 1; if(a==1) alert("执行")
C. : var a = 1; if(a===1)else alert("执行")
D. : var a = 1; if(a==1){alert("执行")}
【多选题】
(专基_Js)以下循环是死循环的有哪些( )。___
A. : for(var i=10;i>0;i++){}
B. : for(var i=1;i<=10;i--){}
C. : for(var i=50;i>=0;i-=5){}
D. : for(var i=5;i<=30;i+=2){}
【多选题】
(专基_Js)var browser = "IE"使用switch对browser的判断,语法错误的有?___
A. : switch(browser){case="IE";console.log("IE浏览器");break;}
B. : switch(browser=="IE"){case :console.log("IE浏览器");break;}
C. : switch(browser){case "IE":console.log("IE浏览器");break;}
D. : switch(browser){case "IE";console.log("IE浏览器");break;}
【多选题】
(专基_Js)使用while循环打印0-100之间的所有偶数var i = 0;while(i<=100){console.log(i);________}横线处的代码可以是___
A. : i- -
B. : i+=2
C. : i++
D. : i=i+2
【多选题】
(专基_Js)下列方法中哪些是用于取整的方法( )。___
A. : Math.ceil()
B. : Math.floor()
C. : Math.random()
D. : Math.round()
【多选题】
(专基_Js)以下关于Math对象方法计算结果不`正确的有( )。___
A. : Math.ceil(3.55)==>3
B. : Math.floor(3.55)==>3
C. : Math.ceil(3.55)==>4
D. : Math.floor(3.55)==>4
【多选题】
(专基_Js)以下关于Math对象描述错误的有( )。___
A. : Math.ceil()是随机获取数值的方法
B. : Math.floor()是向下取整
C. : Math.round()是向上取整
D. : Math.pow()是取绝对值
【多选题】
(专基_Js)以下结果不`正确的有( )。___
A. : Math.ceil(3.55)==>3
B. : Math.floor(3.55)==>3
C. : Math.ceil(3.55)==>4
D. : Math.floor(3.55)==>4
【多选题】
(专基_Js)以下关于数学对象描述错误的有( )。___
A. : Math.ceil()是随机获取数值的方法
B. : Math.floor()是向下取整
C. : Math.round()是向上取整
D. : Math.pow()是取绝对值
【多选题】
(专基_Js)已知字符串str = "hello 1609C";若要获取最后一个字符"C",以下获取方式`正确的有( )。___
A. : str[10]
B. : str.charAt(10)
C. : str[str.length-1]
D. : str.charAt(str.length-1)
【多选题】
var str = "helloworld";针对str,以下操作能够返回wor的有?___
A. : str.substr(5,3)
B. : str.substring(5,8)
C. : str.substring(5,7)
D. : str.slice(5,7)
【多选题】
(专基_Js)检测字符串中字符位置的有?___
A. : indexOf()
B. : lastIndex()
C. : lastIndexOf()
D. : index()
【多选题】
(专基_Js)以下是字符串转大小写的方法有( )。___
A. : toUpperCase()
B. : toLowerCase()
C. : toUpper()
D. : toLower()
【多选题】
(专基_Js)JS字符串方法中基于子字符串创建新字符串的三个方法分别为___
A. : slice()
B. : substring()
C. : substr()
D. : split()
【多选题】
(专基_Js)已知数组 var arr = ["red","blue","aqua"];给该数组最后添加一项"green",以下`正确的有( )。___
A. : arr[3] = "green"
B. : arr[2] = "green"
C. : arr[arr.length] = "green"
D. : arr[arr.length-1] = "green"
【多选题】
(专基_Js) 已知数组 var arr = ["red","blue","yellow"];给该数组最后添加一项"green",以下`正确的有___
A. : arr[2] = "green"
B. : arr[3] = "green"
C. : arr[arr.length] = "green"
D. : arr[arr.length-1] = "green"
【多选题】
(专基_Js) var str = "beiJingBaWei";截取BaWei,截取出来之后并将其转换为小写,以下写法`正确的是___
A. : var str = "beiJingBaWei";console.log(str.slice(7,12).toUpperCase())
B. : var str = "beiJingBaWei";console.log(str.substr(7,12).toUpperCase())
C. : var str = "beiJingBaWei";console.log(str.substring(7,12).toLowerCase())
D. : var str = "beiJingBaWei";console.log(str.substr(7,5).toLowerCase())
【多选题】
(专基_Js)以下创建数组的方式,有5个数据分别为1,2,3,4,5`正确的有___
A. : new Array( 1,2,3,4,5 )
B. : {0:1,1:2,2:3,3:4,4:5}
C. : [1,2,3,4,5]
D. : {1,2,3,4,5}
【多选题】
(专基_Js)数组方法操作行为以下不`正确的有( )。___
A. : 位置方法中,数据是要进行相等比较的,如果没有默认返回-1
B. : pop() 和 unshift()方法的返回值是数值类型的
C. : reverse() 方法是反转数组的项
D. : sort() 只能对数组做升序操作
【多选题】
(专基_Js) 以下是数组位置方法的有( )___
A. : indexOf()
B. : concat()
C. : lastIndexOf()
D. : lastIndex()
【多选题】
(专基_Js) 以下数组方法操作行为`正确的有___
A. : 位置方法中,数据是要进行全等比较的,如果没有默认返回-1
B. : push() 和 unshift()方法的返回值是数值类型的
C. : reverse() 方法是反转数组的项
D. : sort() 只能对数组做升序操作
【多选题】
}以上函数实现的是补零功能,如传8返回"08",12就返回12,_____处的代码可以是( )。___
A. : if(i<10){return "0"+i;} else{return i;}
B. : if(i<10){return "0"+i;} return i
C. : return i<10?"0"+i:i
D. : return i<10?0+i:i
【多选题】
(专基_Js)以下函数中,如果传入的值小于10则补0,如传递9返回09符合要求的有( )。___
A. : function addZero( i ){ if( i < 10 ){ return 0+i; }else{ return i } }
B. : function addZero( i ){ if( i < 10 ){ return "0 "+i; }else{ return i } }
C. : function addZero( i ){ if( i < 10 ){ return "0 "+i; } return i; }
D. : function addZero( i ){ return i < 10 ? "0 "+i : i ; }
【多选题】
(网站工程)以下函数的定义方法`正确的有哪些( ):___
A. : function (){}
B. : var getSum = function(){}
C. : function(x,y){}
D. : var fun() = function{}
【多选题】
addZero()函数实现对num的判断,如果num是一位数,则前面补0返回,否则直接返回,如传入6返回06,传入15,返回15,横线处的代码可以是( )___
A. : if(num<10){ return '0'+num; }else{ return num; }
B. : if(num<10){ return 0+num; }else{ return num; }
C. : if(num<10){ return '0'+num; } return num
D. : return num<10?'0'+num:num
【多选题】
(专基_Js)以下哪些方法可以用于取整( )。___
A. : Math.abs()
B. : Math.floor()
C. : Math.ceil()
D. : Math.round()
【多选题】
(专基_Js)以下哪些属性或方法返回的结果是number类型( )。___
A. : unshift()
B. : charAt()
C. : indexOf()
D. : length
【多选题】
以下创建数组的方式,`正确的有?___
A. : var arr = []
B. : var arr = new Array()
C. : var arr = new Array(3)
D. : var arr = array()
【多选题】
(专基_Js)以下函数中,对传入函数小于10的补零的有( )。___
A. : function addZero( i ){ if( i < 10 ){ return 0+i; }else{ return i } }
B. : function addZero( i ){ if( i < 10 ){ return "0 "+i; }else{ return i } }
C. : function addZero( i ){ if( i < 10 ){ return "0 "+i; } return i; }
D. : function addZero( i ){ return i < 10 ? "0 "+i : i ; }
【多选题】
(专基_Js)获取目前时间戳的方法有( )。___
A. : new Date().getTime()
B. : +new Date()
C. : new
D. ate()*1