相关试题
【判断题】
不断更新的信息技术是信息化战争形成的先导。()
【判断题】
战争走过了冷兵器时代火器时代机械化战争时代,现在正逐步向信息化战争时代过渡。()
【判断题】
信息化战争是政治经济科技等因素作用的结果。()
【判断题】
“海湾战争”是冷战结束以后参战国最多的一场局部战争。()
【判断题】
20世纪90年代初,东欧剧变,两德统一,美苏两极格局迅速解体。()
【判断题】
游击战运动战阵地战被称为“老三战”的作战形式。()
【判断题】
信息化战争形成的“催产剂”是不断发展的科学技术。()
【单选题】
I appreciate ___ to your home.
A. to be invited
B. to have invited
C. having invited
D. being invited
【单选题】
The socks were too small and it was only by ___ them that he managed to get them on.
A. spreading
B. extending
C. lengthening
D. stretching
【单选题】
The trade imbalance is likely to rise again in 2020. ___ a new set of policy actions will be required soon.
A.
B. ecause B. For
C. Hence
D. Therefore
【单选题】
A healthy life is frequently thought to be ___ with the open countryside and homegrown food.
A. associated
B. bound
C. involved
D. tied
【单选题】
My hands and feet were ___ with cold as I waited for the bus.
A. cliff
B. still
C. stiff
D. stick
【单选题】
The Foreign Minister made an excellent ___ on the current international situation.
A. committee
B. command
C. comment
D. commission
【单选题】
Over a third of the population was estimated to have no ___ to the health service.
A. assessment
B. assignment
C. exception
D. access
【单选题】
My father seemed to be in no ___ to look at my school report.
A. mood
B. emotion
C. attitude
D. feeling
【单选题】
He saw the publication of this book as an embarrassing invasion of his ___.
A. secret
B. privacy
C. private
D. piracy
【单选题】
I think I would have died of ___.
A. embarrass
B. embarrassing
C. embarrassed
D. embarrassment
【单选题】
He had an ___ at a restaurant in Greek Street at eight.
A. engagement
B. engage
C. contract
D. promise
【单选题】
These companies often encounter many ___ impediments to investment.
A. invisible
B. edible
C. feasible
D. capable
【单选题】
30 percent of reptiles, birds, and fish are currently ___ with extinction.
A. treated
B. threatened
C. endangered
D. threatening
【单选题】
They have a stronger ___ of the importance of economic incentives.
A. appreciation
B. learning
C. concept
D. idea
【单选题】
I believe I am capable of ___ the political consequences accurately.
A. guessing
B. evaluating
C. calculating
D. computing
【单选题】
When he opened the door, he used too much force and ___ the key.
A. trailed
B. varied
C. wicked
D. twisted
【单选题】
I’m very sorry to have ___ you with so many questions on such an occasion.
A. offended
B. impressive
C. bothered
D. interfered
【单选题】
It is sometimes difficult for young people from the countryside to ___ well to life in the big city.
A. suit
B. adapt
C. regulate
D. coordination
【单选题】
Our guide gave us a detailed ___of this painting but we still do not understand.
A. authority
B. interpretation
C. instruction
D. institution
【单选题】
If you want to ___ the wood, cut it with the grain, not against it.
A. break
B. burn
C. split
D. divide
【单选题】
They have a stronger ___ of the importance of economic incentives.
A. appreciation
B. learning
C. conception
D. idea
【单选题】
I believe I am capable of ___ the political consequences accurately.
A. guessing
B. betting
C. calculating
D. computing
【单选题】
30 percent of reptiles, birds, and fish are currently ___ with extinction.
A. treated
B. threatened
C. danger
D. threatening
推荐试题
【多选题】
(网站工程)以下函数的定义方法`正确的有哪些( ):___
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. : slice()
B. : substring()
C. : substr()
D. : split()
【多选题】
(专基_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 ; }
【多选题】
以下哪些方法属于日期对象的方法?___
A. : getFullYear()
B. : setMonth()
C. : getDate()
D. : getTime()
【多选题】
(专基_Js)获取目前时间戳的方法有( )。___
A. : new Date().getTime()
B. : +new Date()
C. : new
D. ate()*1
【多选题】
(专基_Js) 以下是获取当前时间的毫秒的取值范围不`正确的是___
A. : [0,100]
B. : [1,1000]
C. : [0,59]
D. : [0,999]
【多选题】
(专基_Js)获取当前时间的时间戳的方法有( )。___
A. : new Date().getTime()
B. : +new Date()
C. : new
D. ate()*1
【多选题】
(专基_Js)以下关于日期对象方法说法错误的有( )。___
A. : getFullYear()是设置年份
B. : 时间戳的单位是毫秒
C. : setWeek()是设置星期
D. : 因为设置了年月日所以星期会自动生成,因此没有setDay()这个方法
【多选题】
(专基_Js)正则表达式中以下可以使用的符号有( )。___
A. : ()
B. : []
C. : {}
D. : //
【多选题】
(网站)在正则表达式中可以使用的符号有( )___
A. : ()
B. : []
C. : {}
D. : //
【多选题】
正则表达式的修饰符有:___
A. : m
B. : g
C. : a
D. : i
【多选题】
(专基_Js)表示指定匹配位置限定符的有( )。___
A. : #
B. : $
C. : ^
D. : *
【多选题】
(专基_Js)以下可以表示匹配数字字母下划线的有( )。___
A. : [0-9A-z_]
B. : \w
C. : \W
D. : [0-9A-Za-z_]
【多选题】
console.log(trim(" hello world "));// 打印结果为"hello world",补全函数,实现去空格功能,则横线处的代码分别应该是( )?___
A. : /\s+/g
B. : /^\s+|\s+$/g
C. : return str.replace(re,'')
D. : str.replace(re,'')
【多选题】
(专基_Js)var reg1 = /[a-z]oo\w/;以下哪个字符串匹配reg1这个正则( )___
A. : abook
B. : book
C. : boao
D. : books
【多选题】
(专基)var str="Is this his miss"; var patt1=/^Is/g; console.log(str.match(patt1));打印结果的数组中不可能包含的值有( )___
A. : Is
B. : this
C. : his
D. : miss
【多选题】
(专基_Js)以下DOM设置语句语法`正确的有( )。___
A. : document.getElementById("box").style.border-top="1px solid #f00"
B. : document.getElementsByTagName("body")[0].style.paddingTop = "10px"
C. : document.getElementsByTagName("body")[0].innerHTML = "HELLO"
D. : document.getElementById("box").innerHTML = '<b>hello</b>'
【多选题】
(专基_Js)以下哪些是DOM对象的方法( )。___
A. : getElementById()
B. : getElementsByTagName()
C. : value
D. : innerHTML
【多选题】
(网站工程)以下语句语法`正确的有?( )___
A. : document.getElementById("box").style.border-top="1px solid #f00"
B. : document.getElementsByTagName("body").style.paddingTop = "10px"
C. : document.getElementsByTagName("body")[0].innerHTML = "HELLO"
D. : document.getElementsByTagName("div")[0].innerHTML = '<b>hello</b>'
【多选题】
(专基js)以下关于DOM说法`正确的是___
A. : document.getElementById()只能获取一个节点
B. : document.getElementByTagName()可以获取一个伪数组,保存节点的集合
C. : document.getElementById()如果没有获取到节点默认返回null
D. : 以上都不对
【多选题】
(专基js)innerHTML可以向指定节点内写入___
A. : 文本
B. : 注释
C. : 标签
D. : 以上都不对
【多选题】
(专基_Js)事件处理程序有( )。___
A. : HTML事件处理程序
B. : DOM0级事件处理程序
C. : DOM1级事件处理程序
D. :
E. S事件处理程序
【多选题】
(专基_Js)已知按钮节点btn,以下能实现单击btn按钮,弹出"hello JS"的语法`正确的有( )。___
A. : btn.onclick = function(){ alert( "hello JS" ); }
B. : btn.click = function(){ alert( "hello JS" ); }
C. : btn.onclick = fn ; function fn(){ alert( "hello JS" ); }
D. : btn.onclick = fn() ; function fn(){ alert( "hello JS" ); }
【多选题】
(专基_Js)以下属于键盘的事件有( )。___
A. : keydown
B. : keyup
C. : keypress
D. : keymove
【多选题】
(专基js)已知按钮节点btn,以下能实现单击btn按钮,弹出"hello world"的语法`正确的有___
A. : btn.onclick = function(){ alert( "hello world" ); }
B. : btn.click = function(){ alert( "hello world" ); }
C. : btn.onclick = fn ; function fn(){ alert( "hello world" ); }
D. : btn.onclick = fn() ; function fn(){ alert( "hello world" ); }
【多选题】
(专基js)以下是鼠标事件的有___
A. : mouseover
B. : mouseleave
C. : mousedown
D. : mouseout
【多选题】
(专基_Js)以下设置定时器的方法`正确的有( )。___
A. : setInterval()
B. : setTimeout()
C. : clearInterval()
D. : cleaTimeout()
【多选题】
(专基_Js)以下是清除定时器的方法`正确的有( )。___
A. : setInterval()
B. : setTimeout()
C. : clearInterval()
D. : cleaTimeout()
【多选题】
(专基_Js)以下是设置定时器的方法有( )。___
A. : setInterval()
B. : setTimeout()
C. : clearInterval()
D. : cleaTimeout()
【多选题】
(专基_Js)有函数myFn需要重复调用执行,间隔时间1秒,则以下语法结构`正确是有( )。___
A. : setInterval( myFn , 1000 )
B. : setInterval( function(){ myFn()} , 1000 )
C. : setInterval( myFn() , 1000 )
D. : setInterval( "myFn()" , 1000 )
【多选题】
(专基_Js)以下是数组的方法有( )。___
A. : push()
B. : shift()
C. : split()
D. : slice()
【多选题】
(专基_Js)以下关于DOM对象说法`正确的是( )。___
A. : document.getElementsByTagName()可以获取一个伪数组,保存节点的集合
B. : document.getElementById()只能获取1个节点
C. : document.getElementById()如果没有获取到节点则报错
D. : document.getElementsByTagName()有length属性
【多选题】
(网站工程)以下哪些绑定事件写法`正确?___
A. : p.onclick = function(){}
B. : p.onclick = fun
C. : p.onclick = fun()
D. : p[“onclick”] = function(){}
【多选题】
(专基_Js)JS技能中拖拽案例使用了以下哪些事件( )。___
A. : mousemove
B. : mousedown
C. : mouseup
D. : mouseover
【多选题】
(专基_Js)已知按钮btn,以下能实现单击btn按钮,弹出"hello JS"的语法错误的有( )。___
A. : btn.onclick = function(){ alert( "hello JS" ); }
B. : btn.click = function(){ alert( "hello JS" ); }
C. : btn.onclick = fn ; function fn(){ alert( "hello JS" ); }
D. : btn.onclick = fn() ; function fn(){ alert( "hello JS" ); }
【多选题】
var num = Math.floor( Math.random() * 8 + 1); 以下选项哪些可能是num的返回结果___
A. : 6
B. : 4
C. : 2
D. : 1