&8226;Look at the statements below and the passage.
&8226;Which paragraph (A, B, C or D) does each statement (1-7) refer to?
&8226;For each statement (1-7), mark one letter (A, B, C or D) on your Answer Sheet.
&8226;You will need to use some of these letters more than once.
Demand for Houses Still Running Ahead of Supply
A
House prices have risen again this month as demand continues to outstrip supply, according to the latest research from the property website Rightmove. co. u. k. National average asking prices asking prices rose by 2.3 per cent in September, pushing the average house price through £150,000 and setting the annual rate at 22.2 per cent.
B
"The shortage of properties coming on to the market in many areas means that it is still a seller's market, particularly in the lower and middle price brackets. This shortage and continuing demand are resulting in renewed increases in asking prices overall," Rightmove's Miles Shipside said. The findings support the latest survey from the nationwide Building Society, which showed prices rising at their highest rate since 1999, but contradict the latest Halifax survey which reported a slight slowdown in annual inflation from 20.8 to 18.8 per cent.
C
"It's an intriguing situation, with two house price indexes showing the market grinding to a halt, and two showing that the train still has a good head of steam," said John Wriglesworth, an independent housing commentator. He said that property markets should remain "well supported", thanks to "low interest rates, good affordability and low unemployment".
D
At the end of last month, nation wide said house prices surged at their fastest rate for 13 years and said it saw no sign of demand for homes weakening. The price of the average home jumped by 2.5 percent in August, for the second month in a row, to £110,890, a gain of£67 for every day of the month. Halifax contradicted that just days later, reporting that prices rose in August at their slowest rate for 10 months. It said house prices rose just 0.2 per cent, after jumping 1.8 per cent in July, bringing the annual rise down to 18.8 per cent.
It is still a seller's market.
阅读以下说明和C++抖程序,将应填入(n)处的字句写在答题纸的对应栏内。
【说明】
下面程序的功能是计算并输出某年某月的天数。
【C++程序】
include<iostream>
using namespace std;
(1) Month{Jan,Feb,Mar,Art,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec};
class Date{
public:
Date(int year,Month m_month){
(2) =year;
if (m_month<Jan‖m_month>Dec) month=Jan;
else month=m_month;
};
~Date(){};
bool IsLeapYear(){
return ((year%4==0 && year%1001!=0)‖year%400==0);
};
int CaculateDays(){
switch((3) ){
case Feb:{
if((4) )return29;
e1Se return 28;
}
case Jan:case Mar:case May:case Jul:case AUg:case Oct:
case Dec:retllrn 31;
case Apr:case Jun:Case Sep:case Nov:roturu30;
}
};
private:
int year;
Month month;
};
void main(){
Date day(2000,Feb);
tout<<day. (5) ();
}