皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【单选题】
已知某四层办公楼,每层外墙外围面积为 1000m2 ,室外设一有永久性顶盖的楼梯,共三个自然层,每层投影面积 10m2 ;门口设一外挑宽度为 1.6m 水平投影面积为 4.8m2 的雨蓬,按国家标准( GB/T50353-2013 )的规定,此办公楼的建筑面积为( ) m2 。
A.
4034.8
B.
4030
C.
4015
D.
4017.4
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【多选题】树桩盆景制作的步骤有哪些?
A.
选材
B.
养坯
C.
造型
D.
修剪
E.
上盆
F.
命名
【多选题】在用合模成型方法制作茶壶把子,一般有哪些步骤?
A.
用泥条按压进模具,
B.
两块合到一起按压,
C.
挤出多余的泥,
D.
打开修坯
【单选题】程序填空 #include "iostream" using namespace std; class Array { int size; dataType *element; public: Array(int size=0); ~Array(); dataType ave(); };
A.
template
B.
template (typename dataType)
C.
template {typename dataType}
D.
template [typename dataType]
【单选题】食管腺位于管壁( )
A.
固有层
B.
粘膜下层
C.
外膜
D.
肌层
E.
粘膜层
【简答题】混合动力电动汽车按照动力系统结构形式划分为 A 式、 B 式和 C 式三类
【多选题】混合动力电动汽车按照动力系统结构形式划分为 式、 式和 式三类:
A.
串联
B.
并联
C.
混联
D.
其他
【判断题】银行存款总账的期末余额与银行存款日记账的期末余额之间的核对属于账账核对。
A.
正确
B.
错误
【单选题】public Object growArray(Object array, int size) { Class type = array.getClass().getComponentType(); Object grown = Array.newInstance(type, size); System.arraycopy(array, 0 , grown, 0 ,Math.min(Array.g...
A.
代码的目标是获取array的长度
B.
代码的目标是将array扩充到长度size
C.
第2行用来获取array的Class对象。
D.
第4行代码有缺陷,因为如果size小于array的原始长度,则复制会出错。
【单选题】What is the output of the following code? class Test { public static void main(String[] args) { int[] array = {1,2}; change(array); change(array[0], array[1]); System.out.println(array[0]+","+array[1]...
A.
1,2
B.
2,1
C.
1,1
D.
2,2
【单选题】在下述Java语言语句中,错误的创建数组的方法是()
A.
int int Array[];int Array=new int[5];
B.
int int Array[]=new int[5];
C.
int[]int Array={1,2,3,4,5};
D.
int int Array[5]={1,2,3,4.5};
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题