APP下载
首页
>
财会金融
>
计算机网络基础选择题库
搜索
计算机网络基础选择题库
题目内容
(
多选题
)
88.在vi编辑器的末行模式中,关于替换操作的描述哪些是正确的?(多选)

A、 %表示在整个文件中进行替换

B、 n,m表示在指定行数范围内进行替换

C、 /g表示对每一行的所有匹配结果进行替换

D、 s是substitute的简写,表示替换

E、 替换操作只能在命令模式中进行

答案:ABCD

解析:这道题目考察的是在vi编辑器的末行模式(也称为命令行模式或ex模式)中,关于替换操作的正确描述。下面是对每个选项的简短解析以及为什么选择这些答案:

A. %表示在整个文件中进行替换

正确。在vi编辑器的末行模式中,%符号代表整个文件。因此,使用:%s/old/new/这样的命令可以在整个文件中进行替换操作。

B. n,m表示在指定行数范围内进行替换

正确。在vi编辑器的末行模式中,可以指定行号范围来进行操作。例如,:n,ms/old/new/表示从第n行到第m行进行替换操作。

C. /g表示对每一行的所有匹配结果进行替换

正确。在vi编辑器的替换命令中,g标志表示全局替换,即每一行中所有匹配到的内容都会被替换,而不仅仅是第一个匹配项。

D. s是substitute的简写,表示替换

正确。在vi编辑器的命令中,s确实是substitute的简写,用于表示替换操作。

E. 替换操作只能在命令模式中进行

错误。替换操作实际上是在vi编辑器的末行模式(也称为命令行模式或ex模式)中进行的,而不是在命令模式(也称为普通模式或插入模式之外的模式,用于执行命令如删除、复制等)中进行的。命令模式主要用于文本编辑和命令输入,而替换操作是通过在末行模式中输入特定的命令来完成的。

因此,正确答案是ABCD。

计算机网络基础选择题库
272.在Cisco设备上配置IPv6地址时,应该使用哪个命令?()
https://www.shititong.cn/cha-kan/shiti/0013b6de-9f0d-94b0-c0a8-777418075700.html
点击查看题目
11、OSI参考模型中,负责数据表示(如加密、压缩等)的是哪一层?
https://www.shititong.cn/cha-kan/shiti/0013ba04-c2c0-f6e7-c0ea-0fb8ebcf6b00.html
点击查看题目
70.在使用ln命令创建链接文件时,默认创建的是哪种类型的链接?
https://www.shititong.cn/cha-kan/shiti/0013b9e5-9852-6c7d-c0a8-777418075700.html
点击查看题目
28、下面选项中,可以将HTML页面的标题设置为“良志教育”的是( )。
https://www.shititong.cn/cha-kan/shiti/00158447-8a22-472e-c0a8-777418075700.html
点击查看题目
45.如果你希望ls命令按文件大小排序并列出,你应该使用哪些选项?(多选)
https://www.shititong.cn/cha-kan/shiti/0013b9e5-9853-3c27-c0a8-777418075700.html
点击查看题目
204、HSRP中的Hello报文主要用于什么?
https://www.shititong.cn/cha-kan/shiti/0013b6de-9f0d-102f-c0a8-777418075700.html
点击查看题目
47、阅读下面HTML代码,如果期望tabs位于box容器的右下角,则需要添加的CSS样式是( )。<div id="box"><div id="tabs"></div></div>
https://www.shititong.cn/cha-kan/shiti/00158447-8a22-728b-c0a8-777418075700.html
点击查看题目
96、在Cisco交换机上,要查看VLAN配置信息,应使用哪个命令?
https://www.shititong.cn/cha-kan/shiti/0013ba04-c2c1-a838-c0ea-0fb8ebcf6b00.html
点击查看题目
107.在Linux系统中,哪种用户具有最高权限并可以执行所有管理任务?
https://www.shititong.cn/cha-kan/shiti/0013b9e5-9852-b7ab-c0a8-777418075700.html
点击查看题目
109.在DNS查询过程中,客户端首先会检查哪个文件来查找域名和IP地址的映射关系( )?
https://www.shititong.cn/cha-kan/shiti/0013b6cb-ebea-4715-c0a8-777418075700.html
点击查看题目
首页
>
财会金融
>
计算机网络基础选择题库
题目内容
(
多选题
)
手机预览
计算机网络基础选择题库

88.在vi编辑器的末行模式中,关于替换操作的描述哪些是正确的?(多选)

A、 %表示在整个文件中进行替换

B、 n,m表示在指定行数范围内进行替换

C、 /g表示对每一行的所有匹配结果进行替换

D、 s是substitute的简写,表示替换

E、 替换操作只能在命令模式中进行

答案:ABCD

解析:这道题目考察的是在vi编辑器的末行模式(也称为命令行模式或ex模式)中,关于替换操作的正确描述。下面是对每个选项的简短解析以及为什么选择这些答案:

A. %表示在整个文件中进行替换

正确。在vi编辑器的末行模式中,%符号代表整个文件。因此,使用:%s/old/new/这样的命令可以在整个文件中进行替换操作。

B. n,m表示在指定行数范围内进行替换

正确。在vi编辑器的末行模式中,可以指定行号范围来进行操作。例如,:n,ms/old/new/表示从第n行到第m行进行替换操作。

C. /g表示对每一行的所有匹配结果进行替换

正确。在vi编辑器的替换命令中,g标志表示全局替换,即每一行中所有匹配到的内容都会被替换,而不仅仅是第一个匹配项。

D. s是substitute的简写,表示替换

正确。在vi编辑器的命令中,s确实是substitute的简写,用于表示替换操作。

E. 替换操作只能在命令模式中进行

错误。替换操作实际上是在vi编辑器的末行模式(也称为命令行模式或ex模式)中进行的,而不是在命令模式(也称为普通模式或插入模式之外的模式,用于执行命令如删除、复制等)中进行的。命令模式主要用于文本编辑和命令输入,而替换操作是通过在末行模式中输入特定的命令来完成的。

因此,正确答案是ABCD。

计算机网络基础选择题库
相关题目
272.在Cisco设备上配置IPv6地址时,应该使用哪个命令?()

A. ipv6address

B. ipv6add

C. ipaddressipv6

D. interfaceipv6address

解析:选项解析:

A. ipv6 address - 这是正确的命令格式,用于在Cisco设备上配置IPv6地址。命令通常后跟接口名称和要配置的IPv6地址。

B. ipv6add - 这不是正确的命令。在Cisco IOS中,没有这样一个命令用于配置IPv6地址。

C. ip address ipv6 - 这个命令格式不正确。在配置IPv6地址时,不应该使用"ip address"命令,因为这个命令是为IPv4地址配置设计的。

D. interface ipv6 address - 这同样不是一个正确的命令。在Cisco设备上配置IPv6地址时,不需要使用"interface"关键词来指定地址。

为什么选择这个答案:

选择A是因为"ipv6 address"是正确的命令,符合Cisco设备配置IPv6地址的标准命令格式。根据Cisco的文档和命令行接口(CLI)指南,正确配置IPv6地址的命令应该是"ipv6 address"后跟接口名称和地址。因此,A选项是正确的。其他选项要么命令格式错误,要么使用了不相关的关键词,不符合IPv6地址配置的要求。

https://www.shititong.cn/cha-kan/shiti/0013b6de-9f0d-94b0-c0a8-777418075700.html
点击查看答案
11、OSI参考模型中,负责数据表示(如加密、压缩等)的是哪一层?

A. 应用层

B. 表示层

C. 会话层

D. 传输层

解析:选项解析:

A. 应用层:应用层是OSI模型的最高层,负责处理应用程序的网络活动,例如电子邮件、文件传输和远程登录等,但不直接负责数据表示。

B. 表示层:表示层负责数据的表示,确保一个系统的应用层所发送的数据可以被另一个系统的应用层读取和理解。它处理数据的加密、压缩和转换,确保不同系统之间可以无缝交换信息。

C. 会话层:会话层负责建立、管理和终止两个通信系统之间的对话。它不直接处理数据表示问题,而是管理这些通信会话的设置和控制。

D. 传输层:传输层负责提供端到端的数据传输服务,确保数据的正确性和有效性,但不涉及数据表示的具体形式。

为什么选择B: 选择B是因为表示层(Presentation Layer)在OSI模型中正是负责数据的表示,包括数据的加密、压缩和转换等,以确保数据在网络中传输前后的表示形式是一致的,可以被接收端正确解释。其他选项虽然也是OSI模型中重要的层次,但它们各自有不同的职责,并不包括数据表示这一功能。

https://www.shititong.cn/cha-kan/shiti/0013ba04-c2c0-f6e7-c0ea-0fb8ebcf6b00.html
点击查看答案
70.在使用ln命令创建链接文件时,默认创建的是哪种类型的链接?

A. 软链接

B. 硬链接

C. 符号链接

D. 都不是

解析:选项解析:

A. 软链接:软链接也称为符号链接(symbolic link),它是指向另一个文件的特殊文件。当使用ln命令时,如果指定了"-s"选项,则会创建软链接。

B. 硬链接:硬链接是指向文件系统中同一inode的另一个名称,它与原始文件共享相同的文件内容。在使用ln命令创建链接时,如果不指定"-s"选项,默认创建的是硬链接。

C. 符号链接:这是软链接的同义词,如果选择这个选项,则意味着认为默认创建的是符号链接,但实际上需要使用"-s"选项。

D. 都不是:这个选项是错误的,因为ln命令确实用于创建链接文件,无论是硬链接还是软链接。

为什么选B(硬链接):

ln命令在默认情况下(即不使用任何选项时)创建的是硬链接。硬链接与原始文件共享相同的inode,这意味着它们实际上指向文件系统中的相同数据块。硬链接不会占用额外的磁盘空间,因为它只是文件系统中的一个额外条目,指向已经存在的文件数据。而软链接则需要额外的空间来存储它所指向的文件的路径名。因此,根据ln命令的默认行为,正确答案是B(硬链接)。

https://www.shititong.cn/cha-kan/shiti/0013b9e5-9852-6c7d-c0a8-777418075700.html
点击查看答案
28、下面选项中,可以将HTML页面的标题设置为“良志教育”的是( )。

A. <head>良志教育</head>

B. <title>良志教育</title>

C. <h>良志教育</h>

D. <t>良志教育</t>

解析:选项解析:

A. 良志教育:这个选项错误。

B. 良志教育:这个选项正确。<br/><br/>C. <h>良志教育:这个选项错误。HTML中没有这样的标签。通常<br/>至<br/>`标签用于定义HTML文档中的标题,但它们不会影响浏览器窗口的标题。<br/><br/>D. <t>良志教育:这个选项错误。HTML中同样没有`这样的标签。这并不是设置页面标题的正确方法。<br/><br/>为什么选择B: 选择B是因为在HTML中,页面标题是通过<title>标签来设置的,这个标签必须位于<head>部分内。浏览器会读取<title>标签中的内容,并将其显示在浏览器的标题栏或标签页上,所以正确的方式是使用<title>标签来定义“良志教育”作为页面的标题。</p> <a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/00158447-8a22-472e-c0a8-777418075700.html target="_blank"> <div style="display: none;"> https://www.shititong.cn/cha-kan/shiti/00158447-8a22-472e-c0a8-777418075700.html </div> <div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=00158447-8a22-472e-c0a8-777418075700> 点击查看答案 </div> </a> <div style="font-weight: 600;"> 45.如果你希望ls命令按文件大小排序并列出,你应该使用哪些选项?(多选) </div> <div> <p> A. -s </p> <p> B. -S </p> <p> C. --sort=size </p> <p> D. --size </p> </div> <p class="jiexixianshi">解析:选项解析:<br/><br/>A. -s:这个选项是ls命令用来显示每个文件的块大小,而不是用来排序的。<br/><br/>B. -S:这个选项是ls命令用来按文件大小进行排序的,符合题目要求。<br/><br/>C. --sort=size:这个选项也是用来指定排序方式的,其中)size就是按照文件大小来排序,符合题目要求。<br/><br/>D. --size:这个选项并不是ls命令的合法选项,因此不符合题目要求。<br/><br/>为什么选择BC:<br/><br/>B选项(-S)是ls命令用来按文件大小进行排序的正确选项,符合题目要求列出按文件大小排序的文件列表。<br/><br/>C选项(–sort=size)也是ls命令中用来按照文件大小进行排序的正确选项,与B选项的功能相同,也符合题目要求。<br/><br/>A选项和D选项不符合题目要求,因此不选。<br/><br/>所以正确答案是BC。</p> <a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/0013b9e5-9853-3c27-c0a8-777418075700.html target="_blank"> <div style="display: none;"> https://www.shititong.cn/cha-kan/shiti/0013b9e5-9853-3c27-c0a8-777418075700.html </div> <div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=0013b9e5-9853-3c27-c0a8-777418075700> 点击查看答案 </div> </a> <div style="font-weight: 600;"> 204、HSRP中的Hello报文主要用于什么? </div> <div> <p> A. 交换路由信息 </p> <p> B. 检测ActiveRouter的可用性 </p> <p> C. 同步Active和Standby的配置 </p> <p> D. 广播虚拟IP地址 </p> </div> <p class="jiexixianshi">解析:HSRP(热备份路由协议)是一种协议,它用于在多个路由器之间实现默认网关的冗余,以确保当主网关出现故障时,能够快速地由备用网关接管数据流,从而提高网络的可靠性。<br/><br/>选项解析如下:<br/><br/>A. 交换路由信息 —— 这个选项不正确。HSRP并不负责交换路由信息,这是路由协议如OSPF、EIGRP等的功能。<br/><br/>B. 检测Active Router的可用性 —— 这个选项是正确的。Hello报文在HSRP中是用来检测活跃路由器(Active Router)的可用性。如果备用路由器(Standby Router)没有在预定的时间内接收到来自活跃路由器的Hello报文,它就会认为活跃路由器已经失效,并将自己升级为活跃状态。<br/><br/>C. 同步Active和Standby的配置 —— 这个选项不正确。HSRP协议并不提供配置同步的功能。Active和Standby路由器的配置需要管理员手动进行同步。<br/><br/>D. 广播虚拟IP地址 —— 这个选项不正确。HSRP中的Hello报文不用于广播虚拟IP地址。虚拟IP地址是由HSRP组中的活跃路由器使用的,用于供网络上的主机作为默认网关。<br/><br/>因此,正确答案是B,因为Hello报文是HSRP协议用来检测活跃路由器的健康状态和可用性的机制。</p> <a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/0013b6de-9f0d-102f-c0a8-777418075700.html target="_blank"> <div style="display: none;"> https://www.shititong.cn/cha-kan/shiti/0013b6de-9f0d-102f-c0a8-777418075700.html </div> <div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=0013b6de-9f0d-102f-c0a8-777418075700> 点击查看答案 </div> </a> <div style="font-weight: 600;"> 47、阅读下面HTML代码,如果期望tabs位于box容器的右下角,则需要添加的CSS样式是( )。<div id="box"><div id="tabs"></div></div> </div> <div> <p> A. #tabs { position:absolute; right:0; bottom:0; } </p> <p> B. #tabs { position:relative; right:0; bottom:0; } </p> <p> C. #box { position:relative; } #tabs { position:absolute; right:0; bottom:0; } </p> <p> D. #box { position:relative; } #tabs { position:right bottom; } </p> </div> <p class="jiexixianshi">解析:解析这道题目时,我们需要理解CSS中定位(positioning)的概念,特别是绝对定位(absolute positioning)和相对定位(relative positioning)的使用。<br/><br/>选项A: #tabs { position:absolute; right:0; bottom:0; }<br/>这个选项将#tabs设置为绝对定位,并尝试将其放置在容器的右下角。然而,绝对定位的元素是相对于其最近的已定位(即非static定位)祖先元素进行定位的。如果没有这样的祖先元素,它将相对于初始包含块(通常是<html>元素或视口)进行定位。因此,如果#box没有设置为相对定位或任何其他类型的定位,#tabs可能不会如预期那样位于#box的右下角。<br/>选项B: #tabs { position:relative; right:0; bottom:0; }<br/>相对定位的元素是相对于其正常位置进行偏移的。这意味着#tabs会尝试在其原本应在的位置基础上向右和向下偏移,但不会脱离文档流,也不会影响其他元素的布局。因此,这个选项不会将#tabs移动到#box的右下角。<br/>选项C: #box { position:relative; } #tabs { position:absolute; right:0; bottom:0; }<br/>这个选项首先将#box设置为相对定位,这意味着#box的定位不会改变(仍然占据文档流中的空间),但它现在成为了一个定位上下文(即包含块)的根。然后,将#tabs设置为绝对定位,并指定right: 0和bottom: 0,这将使#tabs相对于其最近的已定位祖先元素(即#box)的右下角进行定位。这正是我们想要的结果。<br/>选项D: #box { position:relative; } #tabs { position:right bottom; }<br/>这个选项尝试将#tabs设置为一个不存在的定位值right bottom。CSS中不存在这样的定位值。正确的做法是使用position: absolute;并结合right和bottom属性来指定位置。<br/><br/>综上所述,选项C是正确的,因为它正确地设置了#box为相对定位,从而创建了一个定位上下文,然后使#tabs能够相对于这个上下文进行绝对定位,最终位于#box的右下角。</p> <a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/00158447-8a22-728b-c0a8-777418075700.html target="_blank"> <div style="display: none;"> https://www.shititong.cn/cha-kan/shiti/00158447-8a22-728b-c0a8-777418075700.html </div> <div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=00158447-8a22-728b-c0a8-777418075700> 点击查看答案 </div> </a> <div style="font-weight: 600;"> 96、在Cisco交换机上,要查看VLAN配置信息,应使用哪个命令? </div> <div> <p> A. showvlan </p> <p> B. displayvlan </p> <p> C. vlanstatus </p> <p> D. vlanconfig </p> </div> <p class="jiexixianshi">解析:选项解析:<br/><br/>A. show vlan:这是Cisco交换机上用于查看VLAN配置信息的正确命令。该命令可以显示当前交换机上的VLAN列表、VLAN的ID、名称、状态以及各个VLAN中包含的端口等信息。<br/><br/>B. display vlan:这个命令在Cisco交换机中不是标准的命令,用于查看VLAN配置信息。它可能是其他品牌交换机或者路由器的命令。<br/><br/>C. vlan status:这个命令在Cisco交换机上也不是标准的命令。虽然“vlan”是关于VLAN的命令,但“status”通常不会紧跟在后面来查看VLAN配置。<br/><br/>D. vlan config:这个命令同样在Cisco交换机中不是用于查看VLAN配置的标准命令。虽然“vlan”和“config”看起来像是与VLAN配置相关的,但这个组合在Cisco命令行界面(CLI)中并不存在。<br/><br/>为什么选择A: 选择A是因为“show vlan”是Cisco交换机中查看VLAN配置的标准命令。在Cisco的IOS系统中,使用“show”命令可以查看设备的状态和配置信息,而“vlan”则是具体要查看的信息类型。因此,结合这两个关键词的命令“show vlan”能够正确地提供所需的VLAN配置信息。其他选项要么是命令格式不正确,要么是根本不存在于Cisco的命令集中。</p> <a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/0013ba04-c2c1-a838-c0ea-0fb8ebcf6b00.html target="_blank"> <div style="display: none;"> https://www.shititong.cn/cha-kan/shiti/0013ba04-c2c1-a838-c0ea-0fb8ebcf6b00.html </div> <div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=0013ba04-c2c1-a838-c0ea-0fb8ebcf6b00> 点击查看答案 </div> </a> <div style="font-weight: 600;"> 107.在Linux系统中,哪种用户具有最高权限并可以执行所有管理任务? </div> <div> <p> A. 系统用户 </p> <p> B. 普通用户 </p> <p> C. 程序用户 </p> <p> D. 超级用户 </p> </div> <p class="jiexixianshi">解析:这道题考察的是Linux系统中不同类型的用户账户及其权限。<br/><br/>A. 系统用户 - 这些通常是伪用户,用于运行系统进程或服务。它们通常没有登录Shell的能力,并且权限较低,不能执行管理任务。<br/><br/>B. 普通用户 - 这是大多数用户账号的类型,主要用于日常操作,如编辑文件、使用应用程序等。普通用户默认不能执行需要高权限的操作,除非通过授权机制(如sudo)临时获得更高权限。<br/><br/>C. 程序用户 - 这个术语并不常见,可能指的是用于运行特定程序或守护进程的用户账号。这些账号通常也是权限有限的,不会拥有执行所有管理任务的能力。<br/><br/>D. 超级用户 - 在Linux中,超级用户通常指的就是root用户,它拥有系统的最高权限,能够执行所有的管理任务,包括安装软件、修改系统配置、管理系统用户等。<br/><br/>因此,正确答案是D,超级用户。这是因为只有超级用户(root)拥有执行所有管理和系统级别操作的权限。</p> <a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/0013b9e5-9852-b7ab-c0a8-777418075700.html target="_blank"> <div style="display: none;"> https://www.shititong.cn/cha-kan/shiti/0013b9e5-9852-b7ab-c0a8-777418075700.html </div> <div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=0013b9e5-9852-b7ab-c0a8-777418075700> 点击查看答案 </div> </a> <div style="font-weight: 600;"> 109.在DNS查询过程中,客户端首先会检查哪个文件来查找域名和IP地址的映射关系( )? </div> <div> <p> A. 区域文件 </p> <p> B. 本地Hosts文件 </p> <p> C. 缓存文件 </p> <p> D. 解析文件 </p> </div> <p class="jiexixianshi">解析:这道题目考查的是DNS(Domain Name System,域名系统)查询过程中的初始步骤。当一个客户端尝试访问某个域名时,它需要找到对应的IP地址才能进行通信。以下是各个选项的解析以及为什么正确答案是B:<br/><br/>A. 区域文件 - 这是在DNS服务器上存储的文件,包含了特定域及其子域的信息。客户端通常没有直接访问这些文件的权限,因此这不是客户端首次查询的对象。<br/><br/>B. 本地Hosts文件 - 这是一个操作系统级别的文件,存在于客户端设备上,用于保存主机名到IP地址的手动映射。在进行DNS查询之前,系统会先检查此文件,以快速响应已知的域名到IP地址的映射。因此这是正确的答案。<br/><br/>C. 缓存文件 - 虽然现代操作系统和浏览器都会缓存DNS记录以加快未来请求的速度,但在缓存之前,系统通常会先检查Hosts文件。<br/><br/>D. 解析文件 - 这不是一个标准术语,在DNS查询上下文中没有明确的意义。可能是对Hosts文件或配置文件的一种误解或者措辞错误。<br/><br/>综上所述,正确答案为B,因为本地Hosts文件是操作系统最先检查的地方,以确定是否有预先定义好的域名与IP地址之间的映射。</p> <a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/0013b6cb-ebea-4715-c0a8-777418075700.html target="_blank"> <div style="display: none;"> https://www.shititong.cn/cha-kan/shiti/0013b6cb-ebea-4715-c0a8-777418075700.html </div> <div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=0013b6cb-ebea-4715-c0a8-777418075700> 点击查看答案 </div> </a> </div> </div> </div> </div> </div> </div> <div class="youce"> <div class="xcx"> <img style="width: 100%;" src="https://shititong.oss-cn-shenzhen.aliyuncs.com/wen/images/guanggao2.jpg" alt="试题通app下载"> </div> <div class="rmtk"> <div class="rmtktop"> <div class="lstk">类似热门题库</div> </div> <div class="tikukuang"> <a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CAF79BEDBCF00001B54282434293C550.html> <div style="display: none;"> https://www.shititong.cn/cha-kan/tikulist/CAF79BEDBCF00001B54282434293C550.html </div> <div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CAF79BEDBCF00001B54282434293C550> 2025发展对象综合题库 </div> </a> <a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CAF79B2BC97000015DE22500F1EB2A60.html> <div style="display: none;"> https://www.shititong.cn/cha-kan/tikulist/CAF79B2BC97000015DE22500F1EB2A60.html </div> <div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CAF79B2BC97000015DE22500F1EB2A60> 24年11月中科院心理咨询师押题B卷 </div> </a> <a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CAF79856C95000017370D210183C8AB0.html> <div style="display: none;"> https://www.shititong.cn/cha-kan/tikulist/CAF79856C95000017370D210183C8AB0.html </div> <div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CAF79856C95000017370D210183C8AB0> 安全隐患排查题库 </div> </a> <a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CAF794D8E98000014AA1F1631816A220.html> <div style="display: none;"> https://www.shititong.cn/cha-kan/tikulist/CAF794D8E98000014AA1F1631816A220.html </div> <div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CAF794D8E98000014AA1F1631816A220> 地质助理试题题库 </div> </a> <a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CAF781B3A4400001F5A019B01CD5CBF0.html> <div style="display: none;"> https://www.shititong.cn/cha-kan/tikulist/CAF781B3A4400001F5A019B01CD5CBF0.html </div> <div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CAF781B3A4400001F5A019B01CD5CBF0> 2024年聊城西站冬季劳动安全考试(客运) </div> </a> <a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CAF78096B5700001445E5B451920139C.html> <div style="display: none;"> https://www.shititong.cn/cha-kan/tikulist/CAF78096B5700001445E5B451920139C.html </div> <div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CAF78096B5700001445E5B451920139C> 列车车站学习资料 </div> </a> <a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CAF77F8C26F00001316013A4A3011729.html> <div style="display: none;"> https://www.shititong.cn/cha-kan/tikulist/CAF77F8C26F00001316013A4A3011729.html </div> <div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CAF77F8C26F00001316013A4A3011729> 电工学生复习题练习 </div> </a> <a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CAF77F67B650000174B95A7065EC1B15.html> <div style="display: none;"> https://www.shititong.cn/cha-kan/tikulist/CAF77F67B650000174B95A7065EC1B15.html </div> <div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CAF77F67B650000174B95A7065EC1B15> 2024年站务员岗位复习资料 </div> </a> <a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CAF77E5E7DB000015E1E36901C8C1655.html> <div style="display: none;"> https://www.shititong.cn/cha-kan/tikulist/CAF77E5E7DB000015E1E36901C8C1655.html </div> <div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CAF77E5E7DB000015E1E36901C8C1655> 附件2:安全履职能力评估题库 </div> </a> <a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CAF77C6B182000011444AF35E31081E0.html> <div style="display: none;"> https://www.shititong.cn/cha-kan/tikulist/CAF77C6B182000011444AF35E31081E0.html </div> <div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CAF77C6B182000011444AF35E31081E0> 附件3:业务知识考试题库 </div> </a> </div> </div> <div class="xcx qujubao" style="margin-top: 10px;"> <img style="width: 100%;" src="https://shititong.oss-cn-shenzhen.aliyuncs.com/jiuban/94251D90D059A47DE81818283A54A382.jpg" alt="举报"> </div> </div> </div> </div> </div> <div class="themingcheng" style="display: none;">计算机网络基础选择题库</div> <div class="theid" style="display: none;">CAE4F0338A100001263A10CE58203A80</div> <div class="fudong"> <div> <div class="renwu"></div> <div class="cha" style="cursor: pointer;"></div> </div> <div style="margin-top: 145px;overflow: auto;"> <div style="overflow: auto;"> <div class="sttxcx"> <div class="sttxcx1"></div> </div> <div class="ssstxcx"> <div class="ssstxcx1"></div> </div> </div> <div style="overflow: auto;float: left;width: 100%;"> <div style="float: left;color: white;margin-left: 5%;">试题通小程序</div> <div style="float: left;color: white;margin-left: 2%;">试题通app下载</div> </div> <div style="float: left;margin-top: -130px;width: 100%;"> <div class="fudongdazi"> </div> </div> </div> </div> <div style="background: #000000;color: #8a8a8a;text-align: center;font-size: 12px;"> <div class="span12" style="padding-top: 10px;padding-bottom: 10px;"> <div class="copyright">©2016-2024.南通佰易网络科技有限公司<br>苏ICP备16028519号-2 苏公网安备32061102000302</div> </div> </div> <div class="zhezhao"> </div> <script src="https://www.shititong.cn/js/qrcode.min.js" type="text/javascript" charset="utf-8"></script> <!-- <script src="https://shititong.oss-cn-shenzhen.aliyuncs.com/danti/qrcode.min.js" type="text/javascript" charset="utf-8"></script> --> <script type="text/javascript"> layui.use(['form', 'table', 'upload', 'layer'], function() { var $ = layui.jquery, form = layui.form, table = layui.table, layer = layui.layer, upload = layui.upload; }); var fd = window.location.href.split("?")[1]; var typezhi if (window.sessionStorage.getItem('laiyuan') == null) { typezhi = 'null' } else { typezhi = window.sessionStorage.getItem('laiyuan') } $(".cha").click(function() { $(".fudong").css("bottom", "-1000px") }); $(".kandaan").click(function() { layer.open({ type: 1, title: false, closeBtn: false, area: '300px;', shade: 0.8, id: 'LAY_layuipro', btnAlign: 'c', time: 5000, moveType: 1, content: '<div style="padding: 50px; line-height: 22px;font-weight: 300;"><div style="background: url(https://shititong.oss-cn-shenzhen.aliyuncs.com/guanwang/images/gongzhonghao.jpg)no-repeat;background-size: 100% 100%;width: 200px;height: 200px;"></div><div style="text-align: center;">更多内容关注微信公众号</div><div style="color:blue;text-align: center;">5秒后显示答案</div></div>', success: function(layero) { }, end: function() { $('.daan').css('display', "block") $(".jiexi").css('display', "block") } }); }); $(".guanbices").click(function() { $(".denglukuang2").css("display", "none") $(".zhezhao").css("display", "none") }); shengcheng() //设置二维码显示隐藏 $(".rwm").hover(function() { $(".rwm1").css("display", "inline-block"); }) $(".rwm").mouseout(function() { $(".rwm1").css("display", "none"); }) function shengcheng() {//题目页的二维码跳转单题 // var a = $(".themingcheng").text() // var zhi=$('.dizhicunfang').text() // var b=zhi.split('.html')[0].split('/shiti/')[1] // var c = 'http://x.shititong.cn/?p1=' + b + '&p3=H' // new QRCode(document.getElementById("qrcode1"), c); // $("#qrcode1").attr("title", "") // new QRCode1(document.getElementById("qrcode2"), c); // $("#qrcode2").attr("title", "") // new QRCode1(document.getElementById("qrcode3"), c); // $("#qrcode3").attr("title", "") var a = $(".themingcheng").text() a=a.substring(0, 20) var b = $(".theid").text() var c = 'http://x.shititong.cn/?p1=' + b + '&p2=' + a + '&p3=A&laiyuan=' + typezhi new QRCode(document.getElementById("qrcode1"), c); $("#qrcode1").attr("title", "") new QRCode1(document.getElementById("qrcode2"), c); $("#qrcode2").attr("title", "") new QRCode1(document.getElementById("qrcode3"), c); $("#qrcode3").attr("title", "") } $(".tiaozhuandati1").click(function() { var tz = 'https://www.shititong.cn/page/xiazai2.html' window.open(tz, "_blank"); }); $('.shitisdj').click(function() { // var zhi = $(this).children().eq(0).html() // var z = zhi + '?type=' + typezhi // window.open(z, "_blank"); }) $('.qujubao').click(function() { //跳转举报单页面 window.open("https://www.shititong.cn/page/jubaoye.html", "_blank") }); $('.qusousuo').click(function() { //去主页手机搜索页 var tz = 'https://www.shititong.cn/page/sj-tikuss.html' window.open(tz, "_blank"); }); $('.quguanwang').click(function() { var tz = 'https://www.shititong.cn' window.open(tz, "_blank"); }); $('.fenxiangbtn').click(function(){ var dqdizhi=$('#zzz1').attr('data-value') //var dqdizhi=window.location.href.split("?")[0]; var input = document.createElement('input'); input.setAttribute('id', 'cp_hgz_input'); input.value = dqdizhi; document.body.appendChild(input); input.select(); document.execCommand('Copy') document.getElementById('cp_hgz_input').remove(); alert("链接已复制到剪切板"); }); $('.quxiazai').click(function() { var u = navigator.userAgent; var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android终端 var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端 if (isAndroid == true) { var tz = 'https://shititong.oss-cn-shenzhen.aliyuncs.com/apk/shititong.apk' location.href = '' + tz return } else { var tz = 'https://apps.apple.com/cn/app/id1199345588' location.href = '' + tz return } var tz = 'https://www.shititong.cn/page/xiazai2.html' location.href = '' + tz }); $('.kandaan1').click(function() { layer.open({ type: 1, title: false, closeBtn: true, area: '300px;', shade: 0.8, offset: '100px', id: 'LAY_layuipro1', btnAlign: 'c', moveType: 1, content: '<div style="padding: 10px; line-height: 22px;font-weight: 300;"><div><div style="text-align: center;color: #0084FF;font-weight: 600;">快速找答案小妙招</div></div><div><div style="font-weight: 600;margin-top:10px;">方式一:使用小程序搜题</div><div style="font-size: 14px; color: #000000a1;margin-top:10px;">微信扫小程序码进入【试题通】小程序,搜索题库或试题答题练习更方便</div></div><div style="text-align: center;"><img style="width:30%;" src="https://shititong.oss-cn-shenzhen.aliyuncs.com/danti/dtxcx.jpg" alt=""><div style="font-size: 12px;color: #0000006b;">如不便扫码,点击可保存到手机相册中</div></div><div><div style="font-weight: 600;">方式二:使用试题通APP</div><div style="font-size: 14px; color: #000000a1;margin-top:10px;">可通过扫下方二维码或各手机品牌应用商店下载试题通APP,答题练习搜题找答案</div></div><div style="text-align: center;"><img style="width:30%;" src="https://shititong.oss-cn-shenzhen.aliyuncs.com/danti/shititongapp.jpg" alt=""><div style="font-size: 12px;color: #0000006b;line-height:14px;">苹果安卓两码合一 <br>如不便扫码可点击保存到手相册中</div></div></div>', success: function(layero) { }, end: function() { $('.daan').css('display', "block") $(".jiexi").css('display', "block") } }); }); function jiacode(input) { var output = ""; var chr1, chr2, chr3, enc1, enc2, enc3, enc4; var i = 0; var _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; input = _utf8_encode(input); while (i < input.length) { chr1 = input.charCodeAt(i++); chr2 = input.charCodeAt(i++); chr3 = input.charCodeAt(i++); enc1 = chr1 >> 2; enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); enc3 = ((chr2 & 15) << 2) | (chr3 >> 6); enc4 = chr3 & 63; if (isNaN(chr2)) { enc3 = enc4 = 64; } else if (isNaN(chr3)) { enc4 = 64; } output = output + _keyStr.charAt(enc1) + _keyStr.charAt(enc2) + _keyStr.charAt(enc3) + _keyStr.charAt(enc4); } return output; } $('.fudong').click(function() { $(".fudong").css("display", "none") }); function _utf8_encode(string) { string = string.replace(/\r\n/g, "\n"); var utftext = ""; for (var n = 0; n < string.length; n++) { var c = string.charCodeAt(n); if (c < 128) { utftext += String.fromCharCode(c); } else if ((c > 127) && (c < 2048)) { utftext += String.fromCharCode((c >> 6) | 192); utftext += String.fromCharCode((c & 63) | 128); } else { utftext += String.fromCharCode((c >> 12) | 224); utftext += String.fromCharCode(((c >> 6) & 63) | 128); utftext += String.fromCharCode((c & 63) | 128); } } return utftext; } </script> </body> </html>