火灾自动报警系统中,金属管子入盒,盒外侧应套锁母,内侧应装护口;在吊顶内敷设时,盒的内外侧均应套锁母。()
参考答案:对
阅读下面一首宋诗,然后回答问题。(8分)
即 事
王安石
径暖草如积,山晴花更繁。
纵横一川水,高下数家村。
静憩鸡鸣午,荒寻犬吠昏。
归来向人说,疑是武陵源。
小题1:宋诗很讲究炼字,这首诗首联上下两句各有一字体现了诗人炼字的功夫,请找出来,并简要分析。(4分)
小题2:这首诗的颔联和颈联描绘了一幅什么样的画面?(4分)
[说明] 根据下面所给的AAA数据库,或者按照下列所给的每条SQL查询语句写出相应的功能,或者按照下列所给的每种功能写出相应的SQL查询语句。 假设使用名称为AAA的数据库,它包括Students(学号char(8),姓名varchar(8),年龄 int,专业varchar(20),入学日期Date Time)和Score(学号char(8),课程名varchar(10),成绩 numeric(5,2))两张表。
[问题3] 请说出该程序段的功能。 declare @e numeric(5,2) declare @ c1 int, @ c2 int, @ c3 int, @ c4 int set @ c1=0; set @ c2 =0; set @ c3=0; set @ c4=0 declare xxx cursor for select 成绩 from score open xxx fetch xxx into @ c while @’@ fetch_status = 0begin if(@c > =90) set @cl =@ e1 +1; else if( @ c > =70) set @ c2 =@ c2 +1; else if(@ c> =60) set @ c3 =@ c3 +1; else set @ c4 = @ c4 + 1 fetch from xxx into @ cend close xxx deallocate xxx print 优秀生人数:’+sb(@ c1,5); print食好生人数:’+str(@ c2,5); print及格生人数:’+str(@ c3,5); print及格生人数:’+sh(@ c4,5)