城市规划法规文件的纵向体系由各级人大和政府按其立法职权制定的法律、法规、规章和规范性文件组成。下面列出的各级人大和政府(左侧)与立法职权相应的法规文件 (右侧)。如何连线是正确的。
(a) 全国人大 甲、法律
(b) 省级人大
(c) 国务院 乙、法规
(d) 建设部
(e) 省级政府 丙、规章
(f) 省级以下地方政府
(g) 地方城市规划行政主管部门 丁、规范性文件
A. (a) —甲、(b)(c) —丙、(d) —乙、(e)(f)(g) —丁
B. (9) —甲、(b)(d) —丙、(c)(e) —乙、(f)(g) —丁
C. (a) —乙、(b)(e) —丙、(c)(4) —甲、(f)(g) —丁
D. (a) —甲、(b)(c) —乙、(d)(e) —丙、(f)(g) —丁
查看答案
有以下程序: #include<iostream> using namespace std; int main() { int a=5, b=4, c=3,d=2; if(a>b>c) cout<<d<<end1; else if((c-1>=D) ==1) cout<<d+1<<end1; else cout<<d+2<<end1; return O;
A. 2
B. 3
C. 4
D. 编译时有错,无结果
有如下程序: #include <iostream> using namespace std; Class x { protected: int a; public: x() { a=1; } }; class x1 : virtual public x { public: x1() { a+=1; cout<<
A. 1
B. 123
C. 242
D. 244
字长标志计算机的精度和处理信息的能力,在其他指标相同时,字长越大计算机处理数据的速度就越快。
A. 正确
B. 错误
有以下程序: #include <iostream> #include <string> using namespace std; class base { private: char baseName[10]; public: base () { strcpy (baseName, "Base"); } virtual char *myName() {
A. DerivedBase
BaseBase
C. DerivedDerived
D. BaseDerived