皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【单选题】
杂种为什么会有优势?关于杂种优势产生的理论说法不一,现在有许多种解释,其中主要的有以下3个学说,其中不包含()
A.
显性学说
B.
隐性学说
C.
超显性学说
D.
遗传平衡学说
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【单选题】下列程序运行的结果为: public class Test { public static void main(String[] args) { int i; float f = 2.3f; double d = 2.7; i = ((int) Math.ceil(f)) * ((int) Math.round(d)); System.out.println(i); } }
A.
4
B.
5
C.
6
D.
6.1
E.
9
【单选题】《中华人民共和国劳动法》规定,国家实行带薪年休假制度。根据这一规定,劳动者连续工作()以上的,享受带薪休假。
A.
一年
B.
两年
C.
三年
D.
十年
【单选题】Which code determines the int value foo closest to a double value bar?()
A.
Int foo = (int) Math.max(bar);
B.
Int foo = (int) Math.min(bar);
C.
Int foo = (int) Math.abs(bar);
D.
Int foo = (int) Math.ceil(bar);
E.
Int foo = (int) Math.floor(bar);
F.
Int foo = (int) Math.round(bar);
【判断题】Math.round(double e)是返回不大于e的最大整数,Math.floor(double e)是四舍五入运算。
A.
正确
B.
错误
【单选题】Which code determines the int value foo closest to, but not greater than, a double value bar?()
A.
Int foo = (int) Math.max(bar);
B.
Int foo = (int) Math.min(bar);
C.
Int foo = (int) Math.abs(bar);
D.
Int foo = (int) Math.ceil(bar);
E.
Int foo = (int) Math.floor(bar);
F.
Int foo = (int) Math.round(bar);
【单选题】根据《中华人民共和国劳动法》规定,国家实行带薪年休假制度。
A.
正确
B.
错误
【单选题】( )是为实现能源目标和指标,针对主要能源使用而制定的切实可行的行动和对策。
A.
能源基准
B.
能源绩效参数
C.
能源绩效
D.
能源管理实施方案
【简答题】作者说:“没有美食的诱惑、没有神秘的气氛、没有纯洁的童心,就没有过年的乐趣。”作者叙述童年过年时就是从这三个方面入手的,请分别举例说明。
【单选题】定义在Math类中的round(double d)方法的返回类型是什么?
A.
char
B.
short
C.
int
D.
long
E.
float
【单选题】What assigns a value to foo that is closest to, but not greater than, a double value bar? 注:哪一项赋一个最接近但不大于 bar的 值给 foo
A.
int foo =(int)Math.max(bar);
B.
int foo =(int)Math.min(bar);
C.
int foo =(int)Math.abs(bar);
D.
int foo =(int)Math.ceil(bar);
E.
int foo =(int)Math.floor(bar);
F.
int foo =(int)Math.round(bar);
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题