没有搜到到结果?点击这里求解答/求资源。
【单选题】
以下程序段运行结果是( )。 for(y=1;y) y=((x=3*y,x+1),x-1); printf(x=%d,y=%d,x,y);

x=27,y=27
x=12,y=13
x=15,y=14
x=y=27
【单选题】
函数y=2x2-x+3图象经过象限是(  )

第一、二、三象限
第一、二象限
第三、四象限
第一、二、四象限
【单选题】
有如下程序段: int x1,x2; char y1,y2; scanf(%d%c%d%c,x1,y1,x2, 若要求x1、x2y1、y2值分别为10、20、A、B,正确数据输入是( )。 (注:?代表空格)

10A20B
10?A20B
10?A?20?B
10A20?B
【单选题】
X,Y独立同分布P(X=-1)=P(Y=-1)=1/2,P(X=1)=P(Y=1)=1/2

X=Y
P(X=Y)=0
P(X=Y)=1/2
P(X=Y)=1
【单选题】
运行下面程序时,会产生什么异常?( ) public class X7_1_4 { public static void main(String[] args) { int x = 0; int y = 5/x; int[] z = { 1,2,3,4 } ; int p = z[4]; } }

ArithmeticException
NumberFormatException
ArrayIndexOutOfBoundsException
IOException
【单选题】
运行下面程序时,会产生什么异常?( ) public class X7_1_5 { public static void main(String[] args) { int[] z = { 1,2,3,4 } ; int p = z[4]; int x = 0; int y = 5/x; } }

ArithmeticException
NumberFormatException
ArrayIndexOutOfBoundsException
IOException
【判断题】
在关系R(U)中,若X->Y,且Y->Z,那么X->Z就是传递函数依赖。

正确
错误
【判断题】
在关系R(U)中,若X-Y,且Y-Z,那么X-Z就是传递函数依赖。

正确
错误
【单选题】
已有定义:intx=3,y=4,z=5;则表达式!(xy)z-1&&yz/2值是()

6
0
2
1
【单选题】
未标识关系xyz,应使用C语言表达式

(x=)(y=z)
(x=y)AND(y=z)
(x=z)
(x=y)(y=z)