• 2022-06-01
    能用来判断变量x“在2013到2016之间(含2013和2016)”的表达式是:
    A: ( 2013
    B: ( 2013
    C: ( x >= 2013 ) && ( x
    D: ( x = 2013 )
    E: ( x >= 2013 ) || ( x
    F: ( x >= 2013 ) | ( x
  • B,C

    内容

    • 0

      In 2013, the human population reached 7.1 billion with an annual growth rate of 1.1%. How many people will there be in 2014? A: 7.8 x 106 B: 7.8 x 107 C: 7.8 x 108 D: 7.1 x 106 E: 7.1 x 107

    • 1

      设整型变量x为5,y为2,结果值为1的表达式是( )。 A: !(y == x / 2) B: y != x % 3 C: x > 0 && y < 0 D: x != y || x >= y

    • 2

      在下面的表达式运算中,运算结果是日期型的表达式是( ) A: B: 2013/10/01 C: - D: 2013/08/08 E: F: G: 2013/10/01 H: + I: 2013/08/08 J: K: L: 2013/10/01 M: - 10 N: DATE( ) - O: 2013/10/01 P:

    • 3

      以下哪个HiveQL语句是Hive中用来添加分区数据的 A: A:add table t_log partition(2013) location '/logs/2013'; B: B:add table t_log partition(year==2013) location '/logs/2013'; C: C:alter table t_log add partition(2013) location '/logs/2013'; D: D:alter table t_log add partition(year==2013) location '/logs/2013'; E: 第一章 大数据基础知识

    • 4

      判断字符型变量x是否是大写字母的正确的表达式______. A: 'A'<=x<='Z' B: (x>=A)&&(x<=Z) C: ('A'<=x)&&('z'=>x) D: (x>='A')&&(x<='Z')