正确答案: C
排练计时
题目:为了精确控制幻灯片的放映时间,一般使用( )操作。
解析:C
查看原题查看所有试题
学习资料的答案和解析:
[单选题]已知递归函数f(n)的功能是计算1+2+…+n,且n1,应采用的代码段是______。
if n1 then return 0 else return n+f(n-1)
解析:解析:递归函数的目的是执行一系列调用,一直到达某一点,序列终止。为了保证递归函数正常执行,应该遵守下面的规则:
[单选题]在操作系统的PV操作中,P操作中进行的是(18).
信号量减一
解析:解析:RV操作是操作系统中实现进程同步与互斥的原语。P操作和V操作都是不可分割的原子操作,因此,P、V原语执行期间不允许中断发生。其中对PV操作的描述如下: P(sem)操作的作用是将信号量sem值减1,若sem的值成负数,则调用P操作的进程暂停执行,直到另一个进程对同一信号量做V操作。V(sem)操作的作用是将信号量 sem值加1,若sem的值小于等于0,则从相应队列(与sem有关的队列)中选择一个进程,唤醒它。
[单选题]操作系统的作业调度的主要功能和流程是?(36)。Ⅰ 记录已进入系统的各作业的情况,管理系统中所有作业的执行顺序。
全部
解析:解析:本题考查的是操作系统作业和作业调度的知识点,作业调度和进程调度一样是操作系统中重要的调度,考生一定要了解其主要功能和主要的调度算法。
[单选题]One of the difficulties in building an SQL-like query lange for the Web is the absence of a database schema for this huge, heterogeneous repository of information. However, if we are interested in HTML documents only, we can construct a virtual(66)from the implicit structure of these files. Thus, at the highest level of(67), every such document is identified by its Uniform. Resource Locator(URL), has a title and a text Also, Web servers provide some additional information such as the type, length, and the last modification date of a document. So, for data mining purposes, we can consider the site of all HTML documents as arelation:Document(url,(68), text, type, length, modify)
schema