A. uneven
B. unemployed
C. uneventful
D. uneasy
第1题:
37_______
A.brave B.excited C.eurious D.grew
第2题:
Son (in the kitchen): Shall I turn on the burner?
Mother: ______________. I haven ’t finished peeling the pota toes.
A: No, not just
B: No, not yet
C: No, not still
D: No, not already
第3题:
第4题:
A、mother-in-law’s and his sister-in-law's
B、mother’s-in-law’s and his sister's-in-law’s
C、mother’s-in-law and his sister’s-in-law
D、mother-in-laws’ and his sister-in-laws’
第5题:
有如下程序:
include <iostream>
using namespace std;
class PARENT
{
public:
PARENT() { cout <<"PARENT"; }
};
class SON : public PARENT
{
public:
SON() {cout << "SON"; }
};
int main()
{
SON son;
PARENT *p;
p = &son;
return 0;
}
执行上面程序的输出是______。
第6题: