演讲中,噱头往往是外加的,内容是浅薄的、哗众取宠的。幽默是内容本身的有机组成,是生动化的手段,是包含着智慧的,能给人启示的。根据这一判断,可以说文中下面这一句是噱头:“当然中国古代也有类似的故事,但是起码马语没有人语这么发达。如果马语比人语还发达的话,那么今天王蒙这个位置上的可能就是一匹公马了。”
查看答案
在这篇演讲中,王蒙触及了许多关于语言的学术前沿问题,比如“语言本体论”“语言审美论”以及语言的文化涵义。
A. 对
B. 错
一个进程是 ( )。
A. 处理机一次或多次执行的一个程序。
B. 一个独立的程序 +数据集。
C. PCB 结构与程序和数据的组合。
D. 一个独立的程序。
一个进程调用 wait 或 waitpid 函数,可能产生 3 中情况,下列不属于这 3 种情况的是 ( )。
A. 如果所有子进程都还在运行,进程挂起。
B. 如果恰有子进程结束,它的终止状态字正等待父进程提取,立即得到该终止状态字并返回,其返回值为该子进程的进程号。
C. waitpid,如果该进程没有子进程,参3指定了WNOHANG,返回0。
D. 如果该进程没有子进程,立即返回,返回值为 0。
以下程序的输出结果是()#include #include #include #include #include int main(int argc, char *argv[]){printf("===================start of file\n");pid_t pid = fork();if (pid == -1) {perror("fork error");exit(1);} else if (pid == 0) {printf("---child,my pid is %d,my parent pid is %d\n",getpid(),getppid());} else if (pid > 0) {printf("---parent my child is %d,my pid is %d,myparent pid is %d\n", pid,getpid(),getppid());sleep(1);}printf("===================end of file\n");return 0;}
A. ===================start of file---parent my child is 4759,my pid is 4758,myparent pid is 3700---child,my pid is 4759,my parent pid is 4758===================end of file
B. ===================start of file---parent my child is 4759,my pid is 4758,myparent pid is 3700---child,my pid is 4759,my parent pid is 4758===================end of file===================end of file
C. ===================start of file---parent my child is 4759,my pid is 4758,myparent pid is 3700---child,my pid is 4759,my parent pid is 4758===================end of file===================end of file===================end of file
D. ===================start of file===================start of file---parent my child is 4759,my pid is 4758,myparent pid is 3700---child,my pid is 4759,my parent pid is 4758===================end of file===================end of file