【单选题】【消耗次数:1】
下列四个IP地址中,属于B类地址的是( )
12.205.241.215
186.157.215.215
210.250.213.215
254.20.218.215
参考答案:
复制
纠错
相关题目
【单选题】 下列 IP地址中属于B类地址的是( )
①  A、98.62.53.6
②  B、130.53.42.10
③  C、200.245.20.11
④  D、221.121.16.12
【多选题】 下列IP地址分组中,同属于B类地址的是( )
①  110.4.20.115
②  162.34.100.2
③  180.16.32.4
④  195.68.0.58
【单选题】 下列属于B类IP地址的是
①  128.2.2.10
②  202.96.209.5
③  20.113.233.246
④  192.168.0.1
【单选题】 下列的 IP地址中哪一个是B类地址( )
①  A10.10.10.1
②  B191.168.0.1
③  C192.168.0.1
④  D202.113.0.1
【单选题】 私有B类IP地址地址范围是( )。
①  地址范围:172.16.0.1—172.31.255.254
②  地址范围:192.168.0.1—192.168.255.254
③  类地址范围:192.168.0.1—192.168.0.254
④  地址范围:10.0.0.1—10.255.255.254
【单选题】 以下四个IP地址()是不合法的主机地址。
①  01011110.11100011.01100100.10010100
②  11111110.10101011.01010100.00101001
③  11011110.11100011.01101101.10001100
④  10011110.11100011.01100100.00001100
【单选题】 下面的IP地址中,哪个是B类地址( )。
①  225.21.0.11
②  170.23.0.1
③  127.19.0.23
④  193.0.25.37
【单选题】 B类IP地址是指( )。
①  每个地址的长度为48位
②  可以表示1024个网络
③  每个B类网络最多可以有254个节点
④  用二进制编址时第一位为1
【单选题】 下面的IP地址中哪一个是B类地址?()
①  10.10.10.1
②  191.168.0.1
③  192.168.0.1
④  202.113.0.1
【单选题】 下面IP地址中属于C类地址的是( )。
①  202.54.21.3
②  10.66.31.4
③  109.57.57.96
④  240.37.59.62
随机题目
【单选题】 在JavaScript中,下列选项能把“毒皇后”这一行删除的是()table border=0 cellspacing=0 cellpadding=0 id=tb tr id=row1 七个小矮人/td 7/td /tr tr id=row2 毒皇后/td 100/td /tr tr id=row3 白雪公主/td 8/td /tr/table(选择一项)
①  document.getElementById(tb).deleteRow(1)
②  document.getElementById(tb).deleteRow(2)
③  document.getElementById(tb).deleteRow[1]
④  document.getElementById(tb).deleteRow[2]
【单选题】 关于DOM的三个组成部分,其中不包括:()(选择一项)
①  Core DOM
②  XML DOM
③  HTML DOM
④  XHTML DOM
【单选题】 关于document对象的常用方法,以下说法错误的有:()(选择一项)
①  getElementById( ) 返加拥有指定id的第一个对象的引用
②  getElementById( ) 返加拥有指定id的对象的集合
③  getElementsByName( ) 返加拥有指定名称的对象的集合
④  write() 向文档写文本,HTML表达式或javascript代码
【单选题】 页面中有一个表单myform,表单中有名为txtName的输入用户名的文本框,则以下验证用户名非空的代码正确的是( )。(选择一项)
①  var name = document.myform.txtName.value; if(name==){ alert(用户名不能为空! document.myform.txtName.focus( ); }
②  var name = document.myform.txtName.text; if(name==){ alert(用户名不能为空! document.myform.txtName.focus( ); }
③  var name = document.myform.txtName.value; if(name.isNull==true){ alert(用户名不能为空! document.myform.txtName.focus( ); }
④  var name = document.myform.txtName.text; if(name.isNull==true){ alert(用户名不能为空! doocument.myform.txtName.focus( ); }
【单选题】 下列选项中( )可以用来检索下拉列表框中被选项目的索引号。(选择一项)
①  selectedIndex
②  options
③  length
④  indexNumber
【单选题】 某页面中有两个id分别为mobile和telephone的图片,下面( )能够正确地隐藏id为mobile的图片。(选择一项)
①  document.getElementsByName(mobile).style.display=none
②  document.getElementById(mobile).style.display=none
③  document.getElementsByTagName(mobile).style.display=none
④  document.getElementsByTagName(img).style.display=none
【单选题】 JavaScript代码段如下,下面对代码段分析正确的是( )。marquee direction=left onMouseOver=this.stop( ); onMouseOut=this.start( ); loop=100滚动的文字/marquee则下列选项对代码段描述正确的是( )。(选择一项)
①  文字循环向右滚动100次,然后停止
②  文字向左无限次循环滚动;鼠标停在文字上时,文字停止滚动,移开时,继续滚动
③  文字循环向左滚动100次,鼠标停在文字上时,文字停止滚动,移开时,继续滚动
④  文字向左来回往复滚动,鼠标停在文字上时,文字停止滚动,移开时,继续滚动
【单选题】 以下不属于select对象常用属性的是(选择一项)
①  onchange
②  length
③  selectedIndex
④  options
【单选题】 页面中有一表单myform,表单中有名为txtEmail的输入电子邮件文本框,则以下验证电子邮件格式必须包含点符号(.)代码正确的是( ).(选择 一项)(选择一项)
①  var strEmail = document.myform.txtEmail.value; if(strEmail.indexOf(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
②  var strEmail = document.myform.txtEmail.text; if(strEmail.indexOf(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
③  var strEmail = document.myform.txtEmail.value; if(strEmail.concat(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
④  var strEmail = document.myform.txtEmail.text; if(strEmail.concat(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
【多选题】 下列( )可以使窗口显示前一个页面(选择二项)
①  back( )
②  forward( )
③  go(1)
④  go(-1)