() is the control of temperature and humidity in a space tog

题目
单选题
() is the control of temperature and humidity in a space together with the circulation, filtering and refreshing of the air.
A

Refrigeration

B

Air conditioning

C

Ventilation

D

Heating

参考答案和解析
正确答案: C
解析: 暂无解析
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

The dew point is reached when the ______.

A.temperature of the air equals the temperature of the seawater

B.atmospheric pressure is 14.7 lbs. per square inch

C.relative humidity reaches 50%

D.air becomes saturated with water vapor


正确答案:D

第2题:

As the temperature for a given mass of air increases, the ______.

A.dew point increases

B.dew point decreases

C.relative humidity increases

D.relative humidity decreases


正确答案:D
当一特定气团的温度上升时,相对湿度减小。

第3题:

If air at 95°Cdry bulb temperature and 50%relative humidity is conditioned to 75°Cdry bulb temperature and 50%relative humidity, it is an example of()

A.cooling only

B.cooling and humidifying

C.cooling and dehumidifying

D.adiabatic(绝热的)cooling


答案:C

第4题:

英译中:Humidity controlled space


正确答案: 控湿储存区

第5题:

阅读下列说明和C++代码,回答问题,将答案填入相应横线处。【说明】某实验室欲建立一个实验室环境监测系统,能够显示实验室的温度、湿度以及洁净度等环境数据。当获取到最新的环境测量数据时,显示的环境数据能够更新现在采用观察者(observer)模式来开发该系统,观察者模式的类图如下图所示。



?【C++代码】#include #include using namespace std;class Observer {public:????virtual void update(float temp, float humidity, float cleanness)=0;};class Subject {public:????virtual void registerObserver(Observer* o) = 0; //注册对主题感兴趣的观察者????virtual void removeObserver(Observer* o) = 0; //删除观察者????virtual void notifyObservers() = 0;//当主题发生变化时通知观察者};class EnvironmentData : public?????(1) ????{private:vector observers;float temperature, humidity, cleanness;public:????void registerObserver(Observer* o) { observers.push_back(o); }????void removeObserver(Observer* o) { /* 代码省略 */ }????void notifyObservers() {for(vector::const_iterator it = observers.begin(); ???????????it != observers.end(); it++){???????(2) ???; }}Void measurementsChanged() {?????(3) ???; }void setMeasurements(float temperature, float humidity, float cleanness) {????this->temperature = temperature;????this->humidity = humidity;????this->cleanness = cleanness;????????(4) ???;????}};class CurrentConditionsDisplay : public?????(5) ???{private: ?????float temperature, humidity, cleanness;????Subject* envData;public:????CurrentConditionsDisplay(Subject* envData) {????????this->envData = envData;???????????(6) ??; ??????}void update(float temperature, float humidity, float cleanness) ?{this->temperature = temperature;????this->humidity = humidity;????this->cleanness = cleanness;????display();}void display() { /* 代码省略 */ }};int main() {????EnvironmentData* envData = new EnvironmentData();????CurrentConditionsDisplay* currentDisplay = new CurrentConditionsDisplay(envData);????envData->setMeasurements(80, 65, 30.4f);????return 0;}


答案:
解析:
1、Subject[解析] 当主题中的环境发生变化,也就是调用measure-mentsChanged(),会通知观察者,即调用notifyObservers(),在notifyObservers()方法中,观查者会调用自身的up-date(float temperature,float humidity,float cleanness)。在主题的registerObserver(Observe*o)中会注册对主题感兴趣的观察者。
2、(*it)->update(temperature,humidity,clean-ness)
3、notifyObservers()     4、measurementsChanged()
5、Observer()     6、this->envData->registerObserver(this)    

第6题:

As the temperature for an air mass decreases, the ______.

A.absolute humidity increases

B.relative humidity increases

C.specific humidity increases

D.dew point rises


正确答案:B
随着特定气体的温度升高,相对湿度降低。

第7题:

Cloud formations are minimal when the ______.

A.surface temperature and temperature aloft are equal

B.surface temperature and temperature aloft differ greatly

C.barometric pressure is very low

D.relative humidity is very high


正确答案:A
水面及其上方的温度相同时云的形成最小。

第8题:

阅读下列说明和C++代码,将应填入 (n)处的字句写在答题纸的对应栏内. 【说明】 某实验室欲建立一个实验室环境监测系统,能够显示实验室的温度、湿度以及洁净度等环境数据。当获取到最新的环境测量数据时,显示的环境数据能够更新。 现在采用观察者(Observer)模式来开发该系统。观察者模式的类图如图5-1所示。

【C++代码】 include <iostream> include <vector> using namespace std; class Observer { public: virtual void update(float temp, float humidity, float cleanness)=0; }; class Subject { public: virtual void registerObserver(Observer* o) = 0; //注册对主题感兴趣的观察者 virtual void removeObserver(Observer* o) = 0; //删除观察者 virtual void notifyObservers() = 0;//当主题发生变化时通知观察者 }; class EnvironmentData : public (1) { private: vector<Observer*> observers; float temperature, humidity, cleanness; public: void registerObserver(Observer* o) { observers.push_back(o); } void removeObserver(Observer* o) { /* 代码省略 */ } void notifyObservers() { for(vector<Observer*>::const_iterator it = observers.begin(); it != observers.end(); it++) { (2) ; } } Void measurementsChanged() { (3) ; } void setMeasurements(float temperature, float humidity, float cleanness) { this->temperature = temperature; this->humidity = humidity; this->cleanness = cleanness; (4) ; } }; class CurrentConditionsDisplay : public (5) { private: float temperature, humidity, cleanness; Subject* envData; public: CurrentConditionsDisplay(Subject* envData) { this->envData = envData; (6) ; } void update(float temperature, float humidity, float cleanness) {this->temperature = temperature; this->humidity = humidity; this->cleanness = cleanness; display(); } void display() { /* 代码省略 */ } }; int main() { EnvironmentData* envData = new EnvironmentData(); CurrentConditionsDisplay* currentDisplay = new CurrentConditionsDisplay(envData); envData->setMeasurements(80, 65, 30.4f); return 0; }


正确答案:

(1)Subject
(2)(*it)->update(temperature,humidity,cleanness)
(3)notifyObservers()
(4)measurementsChanged()
(5)Observer()
(6)this->envData->registerObserver(this)


第9题:

英译中:Temperature controlled space


正确答案: 温度可控区

第10题:

Which of the following factors is the MOST likely cause of a power supply fan failure?()

  • A、 Extreme temperature variances
  • B、 Extreme humidity variances
  • C、 Power stability fluctuations
  • D、 Excessive dust accumulation

正确答案:D

更多相关问题