柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
夜间驾驶机动车在窄路遇到对面驶来非机动车时,以下做法正确的是什么?
A.连续变换远近光灯
B.开启危险报警闪光灯
C.使用远光灯,减速避让
D.使用近光灯,减速避让
热度🔥83
参考答案:D
解析:
夜间驾驶机动车在窄路遇到对面驶来非机动车时,使用近光灯,减速避让。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
有以下程序 #include main() { int m=1,n=2,*p=&m,*q=&n,*r; r=p; p=q; q=r; printf("%d,%d,%d,%d\n",m,n,*p,*q); } 程序运行后的输出结果是
一棵二叉树中共有80个叶子结点与70个度为1的结点,则该二叉树中的总结点数为
在SQL SELECT语句中与INTO TABLE等价的短语是( )。
请分析以下程序。 int main() { pid_t pid; pid = fork(); if(pid==0) printf("I am the child process, my process ID is%d\n",getpid()); else printf("I am the parent process, my process ID is%d\n",getpid());} 那么,该程序正确运行后的结果是