已知某家庭的总效用方程为TU=18Q-Q2,Q为消费商品数量,该家庭获得最大效用时的商品数量为( )
查看答案
M=Px•X+Py•Y是消费者的( )
A. 需求函数
B. 效用函数
C. 预算约束条件方程
D. 不确定函数
设int x=6;doubley=4;则表达式x/y的值是()
A. 0
B. 1
C. 2
D. 1.5
以下程序代码的输出结果是____()intx = 10;while(x > 7) {System.out.print("*"); x--;}
A. *
B. ****
C. **
D. ***
阅读如下程序,分析其运行结果:___________________。publicclassTest1 {publicstaticvoidmain(String args[]) {for(inti = 1; i <= 4; i++)switch(i) {case1: System.out.print("1");case2: System.out.print("2"); break;case3: System.out.print("3");case4: System.out.print("4"); break;}}}