计算机能直接识别和执行的语言是 ( )。A.机器语言 B.高级语言 C.数据库语

题型:单项选择题

问题:

计算机能直接识别和执行的语言是 ( )。

A.机器语言

B.高级语言

C.数据库语言

D.汇编程序

考点:计算机等级考试B笔试计算机等级考试(一级B)25
题型:单项选择题

一些大小、形状完全相同的三角形______密铺地板,正五边形______密铺地板.(填“能”或“不能”)

题型:单项选择题

正确完成下面的句子。

1. I __________ (talk) to many store clerks yesterday.    

2. I __________ (not have) nice trip last Friday.    

3. — What __________ you __________ (do) now?    

    — I __________ (play) checkers.    

    — What __________ you __________ (do) just now (刚才)?    

    — I __________ (go) to Wangfujing Street and __________ (buy) a gift for my father.

题型:单项选择题

在监理工作过程中,项目监理机构一般不具有( )。

A.工程建设重大问题的决策权

B.工程建设重大问题的建议权

C.工程建设有关问题的决策权

D.工程建设有关问题的建议权

题型:单项选择题

农户小额信用贷款是农村中小金融机构支持“三农”发展的主要信贷投入方式。()

题型:单项选择题

填写标记代码行的意义,给出功能描述和前6行程序输出。
#include
#include
int ntimes=0;
main(int argc, char *argv[])
int pid,ppid;
int p_action______, c_action______;
signal(SIGUSR1 , p_action); #(1)
switch(pid=fork______) #(2)
case -1: perror("fork failed);
exit(1);
case 0: signal(SIGUSR1,c_action);
ppid=getppid______;
for ( ; ; ) ;
default:
for( ; ; )
pause;
sleep(1);
kill(pid,SIGUSR1); #(3)




p_action______
printf("parent caught signal #%d\n",++ntimes);

c_action______
printf("child caught signal #%d\n",++ntimes/*, ++ltimes*/);
int ppid;
ppid = getppid______; #(4)
kill(ppid, SIGUSR1);
sleep(3);

更多题库