正确答案: D
256
题目:8个二进制位至多可表示______个数据。
解析:解析:因为28=256,所以,8个二进制位至多可表示256个数据。选项D为正确答案。
查看原题 点击获取本科目所有试题
举一反三的答案和解析:
[单选题]以下关于数字签名的叙述中,错误的是(48)。
能够检测报文在传输过程中是否加密
解析:解析:数字签名主要用于保证数据的完整性(身份认证、防假冒、防篡改等)。报文在传输过程中是否加密属于数据保密性范畴。
[多选题]●Communication protocols are (66) connection-oriented or connectionless, (67) whether the sender of a message needs to contact and maintain a dialog with the recipient or (68) send a message without any prior connect and with the hope that the recipient receives everything (69) .These methods(70) the two ways that communication is implemented on networks.
neither
either
flooded
depending on
simply
accordingly
in array
in series
disclose
reveal
解析:C,C,B,A,C
[多选题]阅读以下说明和JAVA2代码,将应填入(n)处的字句写在对应栏内。【说明】
(1)
(2)
(3)
解析:题目中的程序实现了利用鼠标任意移动该圆形的位置。分析代码可知:(1)实现了对鼠标位置的检测; (2)取得鼠标按下的点与基准点X方向的距离;(3)取得拖曳时的基准点的X坐标;(4)清空画面为背景颜色;(5)更新基准点的X坐标。
(1) frm.addMouseListener(frm);
(2) dx=e.getX()-posX;
(3) x=e.getX()-dx;
(4) update(g);
(5) posX=x;
[单选题]在Linux操作系统中,可以通过iptables命令来配置内核中集成的防火墙。若在配置脚本中添加iptables命令:$IPT-t nat-A PREROUTING -p top-s 0/0-d 61.129.3.88--dport 80-j DNAT--to-dest 192.168.0.18
将对61.129.3.88的80端口的访问转发到内网的192.168.0.18主机上
解析:解析:iptables命令可以配置内核中集成的ip-Chains防火墙。在配置脚本中添加中tables命令:$IPT-t nat-A PREROUTING-p top-s 0/0-d 61.129.3.88--dport 80-j DNAT --to-dest 192.168.0.18。可以将发往61.129.3.88的80端口的消息转发到内网的192.168.0.18主机上。