您好,欢迎访问三七文档
当前位置:首页 > 商业/管理/HR > 质量控制/管理 > c语言期末机考(大连理工大学题库)
熟悉建筑节能设计标准中有关暖通空调制冷部分、暖通空调制冷设备产品标准中设计选用部分、环境保护及卫生标准中有关本专业的规定条文。掌握上述标准中有关本专业的强制性条文。constructionworkareaintheformofconferencereviews.(2)reviewprogramreviewdateisdeterminedbytheprojectmanager;AccordingtotheprojectmanagerofprojectqualitycontrolDepartmentrequirespreparationofamanagementplan,representativeofthemanagementauditoftheproject,approvedbytheprojectmanager;ReviewProjectOfficeissuednoticesofmeetings;Projectmanagerfacilitatesthereviewmeeting,scheduledcontentunderreview;QualitycontrolDepartmentisresponsiblefortherecords,thepreparationofthereviewreportandcorrectiveactionplan,representativeofthemanagementauditoftheproject,approvedbytheprojectmanager;QualitycontrolDepartmentisresponsibleforthepreparationofrecordsandreportsthedistributionlist,orpublishtotheInternetbyengineeringpartoftheprojectstaffanddepartments.OrganizedbythequalitycontrolDepartmentisresponsiblefortrackingtheimplementationofcorrectivemeasuresinspections.3.4.5theoutputfromthemanagementreviewshallincludethefollowingelements:theeffectivenessandsuitabilityofthequalitymanagementsystem,whetheritbemaintainedandrevised;Qualitypolicyandqualityobjectivesareachievedandtomeetcustomerrequirements,whetheritbemaintainedandrevised;Theallocationofresourcestomeetrequirements,whetheryouneedtoaddoradjust.3.4.6correctiveactiontrackingandverificationontheissuesraisedinthereview,bytheprimaryresponsibilityofdepartmentsdrawupcorrespondingspecificcorrective,preventiveandcorrectivemeasures,andseriouslyimplemented.ProjectqualitycontrolDepartmentisresponsibleforthetracking,verificationandevaluationtheeffectofcorrectiveandpreventiveactions.3.4....(1)thesafetyprogramsanddepartmentsdealingwiththeformationofurbanspatial转过不少资料神马的。。我也发一个回报一下~祝大家都有个好成绩~【第一套】一、单项选择1.下列数据中,为字符串常量的是(d)。A、'A'B、Howdoyoudo.C、$abcD、house2.以下所列的C语言常量中,错误的是(b)。A、0xFFB、1.2e0.5C、2LD、'\72'3.以下程序的输出结果是(d。main(){floatx=3.6;inti;i=(int)x;printf(x=%f,i=%d\n,x,i);}A、x=3.,i=4B、x=3i=3.C、x=3,i=3D、x=3.,i=34.若k是整型,则以下程序段的执行结果是:(bk=-3;if(k=0)printf(####)elseprintf(&&&&);A、####B、有语法错误,无结果C、&&&&D、####&&&&5.若x=2,y=3则x||y的结果是(c)。A、3B、0C、1D、26.针对下列程序段回答问题().for(t=1;t=100;t++){scanf(%d,&x);if(x0)continue;printf(%3d,t);}熟悉建筑节能设计标准中有关暖通空调制冷部分、暖通空调制冷设备产品标准中设计选用部分、环境保护及卫生标准中有关本专业的规定条文。掌握上述标准中有关本专业的强制性条文。constructionworkareaintheformofconferencereviews.(2)reviewprogramreviewdateisdeterminedbytheprojectmanager;AccordingtotheprojectmanagerofprojectqualitycontrolDepartmentrequirespreparationofamanagementplan,representativeofthemanagementauditoftheproject,approvedbytheprojectmanager;ReviewProjectOfficeissuednoticesofmeetings;Projectmanagerfacilitatesthereviewmeeting,scheduledcontentunderreview;QualitycontrolDepartmentisresponsiblefortherecords,thepreparationofthereviewreportandcorrectiveactionplan,representativeofthemanagementauditoftheproject,approvedbytheprojectmanager;QualitycontrolDepartmentisresponsibleforthepreparationofrecordsandreportsthedistributionlist,orpublishtotheInternetbyengineeringpartoftheprojectstaffanddepartments.OrganizedbythequalitycontrolDepartmentisresponsiblefortrackingtheimplementationofcorrectivemeasuresinspections.3.4.5theoutputfromthemanagementreviewshallincludethefollowingelements:theeffectivenessandsuitabilityofthequalitymanagementsystem,whetheritbemaintainedandrevised;Qualitypolicyandqualityobjectivesareachievedandtomeetcustomerrequirements,whetheritbemaintainedandrevised;Theallocationofresourcestomeetrequirements,whetheryouneedtoaddoradjust.3.4.6correctiveactiontrackingandverificationontheissuesraisedinthereview,bytheprimaryresponsibilityofdepartmentsdrawupcorrespondingspecificcorrective,preventiveandcorrectivemeasures,andseriouslyimplemented.ProjectqualitycontrolDepartmentisresponsibleforthetracking,verificationandevaluationtheeffectofcorrectiveandpreventiveactions.3.4....(1)thesafetyprogramsanddepartmentsdealingwiththeformationofurbanspatialA、x=0时什么也不输出B、最多允许输出100个非负整数C、printf函数永远也不执行D、当x0时整个循环结束7.以下程序的执行结果是()。main(){intnum=0;while(num=2){num++;printf(%d,,num);}}A、0,1,2B、1,2,3,C、1,2,3,4,D、1,2,8.选择正确的输入语句()。:(其中:charstring[20];)使得string的内容为Iamstudent.A、scanf(%s,string);B、scanf(%c,&string);C、scanf(%s,&string);D、gets(string);9.对以下说明语句inta[10]={6,7,8,9,10};的正确理解是()。A、将5个初值依次赋给a[6]至a[10]B、将5个初值依次赋给a[0]至a[4]C、因为数组长度与初值的个数不相同,所以此语句不正确D、将5个初值依次赋给a[1]至a[5]10.以下标识符中可以作为用户函数名的是().A、structB、intC、unionD、go_to11.以下叙述错误的是().A、函数调用可以出现在一个表达式中B、函数调用可以作为一个函数的形参C、函数调用可以作为一个函数的实参D、函数允许递归调用12.若用数组名作为函数的实参,传递给形参的是()。A、数组第一个元素的值B、数组的首地址C、数组元素的个数D、数组中全部元素的值13.在C语言程序中()。A、函数的定义可以嵌套,但函数的调用不可以嵌套B、函数的定义不可以嵌套,但函数的调用可以嵌套C、函数的定义和函数调用不可以嵌套D、函数的定义和函数调用均可以嵌套14.下列说法中正确的是().A、函数调用不占运行时间,只占编译时间.熟悉建筑节能设计标准中有关暖通空调制冷部分、暖通空调制冷设备产品标准中设计选用部分、环境保护及卫生标准中有关本专业的规定条文。掌握上述标准中有关本专业的强制性条文。constructionworkareaintheformofconferencereviews.(2)reviewprogramreviewdateisdeterminedbytheprojectmanager;AccordingtotheprojectmanagerofprojectqualitycontrolDepartmentrequirespreparationofamanagementplan,representativeofthemanagementauditoftheproject,approvedbytheprojectmanager;ReviewProjectOfficeissuednoticesofmeetings;Projectmanagerfacilitatesthereviewmeet
本文标题:c语言期末机考(大连理工大学题库)
链接地址:https://www.777doc.com/doc-6334995 .html