刷题
导入试题
【单选题】
执行以上代码的结果是( )。___
A. : 弹出10
B. : 弹出undefined
C. : 程序报错
D. : 以上都不对
查看试卷,进入试卷练习
微信扫一扫,开始刷题
答案
C
解析
暂无解析
相关试题
【单选题】
(网站工程)假设box是获取到的dom对象,以下没有语法错误的语句是?___
A. : box.width = "30px"
B. : box.style.background-image = "img/bg.jpg"
C. : box.style.color = #00f
D. : box.style.marginLeft = "5px"
【单选题】
(专基_Js)以下哪个方法是字符串位置方法的为( )。___
A. : substr()
B. : toLowerCase()
C. : toUpperCase()
D. : indexOf
【单选题】
()方法返回一个字符串,该字符串中的所有字母都被转换为大写字母:___
A. : toLowerCase
B. : ?toLocaleUpperCase
C. : toLocaleLowerCase
D. : toUpperCase
【单选题】
}以上代码的打印结果是:___
A. : 1,2,3
B. : ?1,2,4,5,7,8,10
C. : 以上都不对
D. : 1,2
【多选题】
(专基_Js)变量的命名规范有( )。___
A. : 只能以字母下划线或$符开头
B. : 变量名不区分大小写
C. : 不能以数字你开头
D. : 可以使用关键字保留字命名
【多选题】
(专基_Js)NaN是不属于下列哪个类型()?:___
A. : 字符串
B. : 数值
C. : 布尔
D. : 对象
【多选题】
(专基_Js)已知变量v,以下检测其数据类型用法`正确的有( )___
A. : typeof v
B. : typeof(v)
C. : typeof[v]
D. : typeof{v}
【多选题】
(专基_Js)以下对NaN的理解`正确的有( )___
A. : NaN 是一种特殊的数值
B. : NaN不等于任何一个数,包括它本身
C. : NaN表示非数值
D. : 任何涉及与NaN的操作都返回NaN
【多选题】
(专基_Js)JS标识符命名规则中,以下哪些可以做为标识符第一个字符( )。___
A. : _(下划线)
B. : $(美元符号)
C. : 字母
D. : 数字
【多选题】
javascript由什么部分组成?___
A. : 函数
B. : BOM
C. : ECMAScript
D. : DOM
【多选题】
(专基_Js)以下结果返回false的有()?___
A. : flase==0
B. : 0==""
C. : false=="false"
D. : ""=="0"
【多选题】
(专基_Js)以下变量的赋值,写法`正确的是( )___
A. : password=123mypwd
B. : var email,name="marry"
C. : phone="13333333908"
D. : code="my123"
【多选题】
(专基_Js)以下是相等操作符的有( )。___
A. : ==
B. : ===
C. : !=
D. : !==
【多选题】
(专基_Js)以下是关系操作符的有( )。___
A. : >
B. : >=
C. : <=
D. : <
【多选题】
(专基_Js)以下哪些运算符属于赋值运算符( )___
A. : %=
B. : *=
C. : /=
D. : 以上都不对
【多选题】
(专基_Js)以下能转字符串的方法`正确的有( )___
A. : 变量.toString()
B. : String( 变量 )
C. : ""+ 变量
D. : toString(变量)
【多选题】
(专基_Js)以下能将其他类型的数据转字符串的方法`正确的有( )。___
A. : 变量.toString()
B. : String( 变量 )
C. : ""+ 变量
D. : toString(变量)
【多选题】
(专基_Js)以下相等运算符比较结果返回true的有( )。___
A. : 4=="4"
B. : 4!="4"
C. : 4==="4"
D. : 4!=="4"
【多选题】
(专基_Js)以下转数值为1的有( )。___
A. : TRUE(小写)
B. : "1"
C. : "true"
D. : FALSE(小写)
【多选题】
下列选项中那个是switch语句的关键字?___
A. : switch
B. : case
C. : break
D. : default
【多选题】
(专基_Js)以下语句没有语法错误的有哪些?(请注意标点符号)( )。___
A. : var a="hello",a+=" world"
B. : if(isNaN("name55")){console.log("ok")}
C. : if(isNaN("name55")==true){console.log("ok")}
D. : var level="";if(!level)console.log("需要有分级")
【多选题】
(专基_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)if分支语句可分为( )。___
A. : 单分支
B. : 双分支
C. : 多分支
D. : 以上都不是
【多选题】
(专基_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){}
【多选题】
python支持哪几种数值类型()___
A. : 整型
B. : 长整型
C. : 浮点型
D. : 复数
【多选题】
(专基_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)能精确的控制循环语句的关键字有( )。___
A. : case
B. : break
C. : continue
D. : default
【多选题】
(专基_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"
推荐试题
【单选题】
严明党的纪律,首要的是严明___纪律。
A. 工作
B. 廉政
C. 组织
D. 政治
【单选题】
我们的干部要上进,我们的党要上进,我们的国家要上进,我们的民族要上进,就必须大兴___之风,坚持学习、学习、再学习,坚持实践、实践、再实践。
A. 调查研究
B. 学习
C. 实事求是
D. 解放思想
【单选题】
做县委书记就要做焦裕禄式的县委书记,始终做到心中有党、心中有民、心中有责、___。
A. 心中有律
B. 心中有法
C. 心中有戒
D. 心中有爱
【单选题】
《中国共产党廉洁自律准则》要求党员领导干部___,自觉保持人民公仆本色。
A. 廉洁用权
B. 廉洁从政
C. 廉洁修身
D. 廉洁奉公
【单选题】
《中国共产党问责条例》规定,对党的领导干部实行___。
A. 一次性问责
B. 阶段性问责
C. 任期问责
D. 终身问责
【单选题】
《党章》规定,党的纪律是党的___必须遵守的行为规则,是维护党的团结统一、完成党的任务的保证。
A. 基层组织
B. 所有干部
C. 各级组织和全体党员
D. 领导干部
【单选题】
 The shy girl felt _________ and uncomfortable when she could not answer her teacher’s questions.
A. amazed      
B. awkward   
C. curious       
D. amused
【单选题】
This hotel _______ $ 60 for a single room with bath.
A. claims
B. demands
C. prices
D. charges
【单选题】
 Frequently singleparent children ____________  some of the functions that the absent adult in  the house would have served.
A. take off
B. take after   
C. take in        
D. take on
【单选题】
 A peculiarly pointed chin is his most memorable facial __________.
A.  mark          
B. feature     
C. trace         
D. appearance
【单选题】
 John Dewey believed that education should be a preparation for life, that a person learns by doing, and that teaching must ________ the curiosity and creativity of children.
A. seek          
B. stimulate    
C. shape       
D. secure
【单选题】
 Criticism and self-criticism is necessary _______ it helps us to find and correct our mistakes.
A.  by that        
B. at that      
C. on that        
D. in that
【单选题】
 However, at times this balance in nature is ________, resulting in a number of possibly unforeseen effects.
A. troubled       
B. disturbed  
C. confused      
D. puzzled
【单选题】
 The patient’s health failed to such an  extent that he was put into _____ care.
A. tense           
B. rigid     
C.  intensive      
D.  tight
【单选题】
 Does everyone on earth have an equal right _________ an equal share of its resources?
A.  by                 
B. at         
C. to                 
D. over
【单选题】
 In 1914, an apparently insignificant event in a remote part of Eastern Europe __________ Europe into a great war.
A. inserted        
B. imposed   
C. pitched         
D. plunged
【单选题】
 We had to ___________ a lot of noise when the children were at home.
A. go in for        
B. hold on to    
C. put up with     
D. keep pace with
【单选题】
A person's calorie requirements vary ______ his life.___
A. across        
B. throughout  
C. over            
D. within
【单选题】
Generous public funding of basic science would ________considerable benefits for the country's health, wealth and security.___
A. lead to        
B. result from  
C. lie in            
D. settle down
【单选题】
In a time of social reform, people's state of mind tends to keep ___________ with the rapid changes of society___
A. step              
B. progress    
C. pace            
D. touch
【单选题】
The speech which he made __________ the project has bothered me greatly.___
A. regarded      
B. concerned  
C. regarding      
D. concerning
【单选题】
Harry was _______ by a bee when he was collecting the honey.___
A. stung              
B. stuck    
C. bitten            
D. scratched
【单选题】
The thief tried to open the locked door but _________.___
A. in no way          
B. in vain  
C. without effect    
D. at a loss
【单选题】
Remember that customers don't ________ about prices in that city.___
A. debate            
B. consult  
C. dispute            
D. bargain
【单选题】
I hope that you'll be more careful in typing the letter. Don't _________ anything.___
A. lack                
B. withdraw
C. omit                
D. leak
【单选题】
The tomato juice left brown __________ on the front of my jacket.___
A. spot                
B. point    
C. track                
D. trace
【单选题】
The committee is totally opposed ________ any changes being made in the plans.___
A. of                    
B. on      
C. to                    
D. against
【单选题】
I'm very sorry to have _______ you with so many questions on such an occasion.___
A. interfered         
B. offended 
C. impressed         
D. bothered
【单选题】
 The price of beer _______ from 50 cents to $4 per liter during the summer season.___
A. altered             
B. ranged   
C. separated         
D. differed
【单选题】
Their son doesn't know what to ________ at the university; he can't make up his mind about his future.___
A. take in             
B. take up   
C. take over         
D. take after
【单选题】
Although they plant trees in this area every year, the tops of some hills are still _________.___
A. blank             
B. hollow   
C. vacant           
D. bare
【单选题】
Being a pop star can be quite a hard life, with a lot of traveling ________ heavy schedules.
A. with regard to      
B. as to     
C. in relation to       
D. owing to
【单选题】
Tony is very disappointed _______ the results of the exam.
A. with             
B. for     
C. toward         
D. on
【单选题】
William Penn, the founder of Pennsylvania, _________ defended the right of every citizen to freedom of choice in religion.
A. peculiarly        
B. indifferently 
C. vigorously       
D. inevitably
【单选题】
 When people become unemployed, it is _______ which is often worse than lack of wages.___
A. laziness         
B. poverty   
C. idleness       
D. inability
【单选题】
In previous times, then fresh meat was in short __________, pigeons were kept by many households as a source of food.
A. store               
B. provision   
C. reserve           
D. supply
【单选题】
Those gifts of rare books that were given to us were deeply _________.___
A. appreciated     
B. approved  
C. appealed         
D. applied
【单选题】
It is our ___________ policy that we will achieve unity through peaceful means.___
A. consistent         
B. continuous  
C. considerate      
D. continual
【单选题】
He is __________ about his chances of winning a gold medal in the Olympics next year.___
A. optimistic         
B. optional    
C. outstanding       
D. obvious
【单选题】
The director was critical _______________ the way we were doing the work.___
A. at             
B. in      
C. of             
D. with
欢迎使用我爱刷题
×
微信搜索我爱刷题小程序
温馨提示
×
请在电脑上登陆“www.woaishuati.com”使用