软件水平考试程序员易错题(2018/1/24) |
第1题:下列语言中不属于面向过程的语言是( )
A、高级语言 B、低级语言 C、C语言 D、PASCAL语言 |
【单选题】: |
第2题:数据库技术中的“脏数据',是指__(35)__的数据。
35. A、错误 B、回返 C、未提交 D、未提交的随后又被撤消 |
【单选题】: |
第3题:编写一程序,输出如下图形。
***** ***** ***** ***** |
【分析题】: |
第4题:struct stu
{ int num;char name[10];int age}; void py(struct stu *p) { printf("%s\n",(*p).name);} main() { struct stu student[3]={{1001,"Sun",25}, {1002,"Ling",23}, {1003,"Shen",22}; py(student+2); } |
【分析题】: |
第5题:循环语句“for(x=0, y=0;(y!=123)||( x<4);x++);”的循环执行( )
A、无限次 B、不确定次 C、4次 D、3次 |
【单选题】: |