单选题If x= a/3+b/32+c/33, when a, b, and c are each equal to 0 or 1, then x could be each of the following EXCEPT ______.A1/27B1/9C4/27D2/9E4/9

单选题
If x= a/3+b/32+c/33, when a, b, and c are each equal to 0 or 1, then x could be each of the following EXCEPT ______.
A

1/27

B

1/9

C

4/27

D

2/9

E

4/9


参考解析

解析: 将a,b,c,分别赋值0,1代入计算可知,本题选D项。

相关考题:

有以下程序void change(int k[ ]){ k[0]=k[5];}main(){ int x[10]={1,2,3,4,5,6,7,8,9,10},n=0;while( n=4 ) { change( x[n]) ; n++; }for(n=0;n5;n++) printf("%d ",x[n]);printf("\n");}程序运行后输出的结果是A)6 7 8 9 10B)1 3 5 7 9C)1 2 3 4 5D)6 2 3 4 5

设k为整型变量,且有以下程序段: if(k0) then if k>5 then if k2 then x:=3 else x:=4 用case语句改写上述程序,执行效果一样的是( )。 Acase k of 1,2:x:=4; 3,4,5:x:=3; 8,9,10:x:=1; 6,7:x:=0 endBcase k of 1:x:=4; 2,3,4,5:x:=3; 8,9,10:x:=1; 6,7:x:=0 endCcase k of 1,2:x:=4; 3,4,5:x:=3; 9,10:x:=1; 6,7,8:x:=0 endDcase k of 1,2,3:x:=4; 4,5:x:=3; 8,9,10:x:=1; 6,7:x:=0 end

●The constructcobeginStatement1;Statement2;coendmeans Statement1 and Statement2 are to be executed in parallel.The only two atomic actions in this construct are loading the value of a variable and storing into a variable.For the program segmentx=0;y=0;cobegin{x=1;y+=x;}{y=2;x+=3;}coendWhich of the following indicate(s)possible values for the variables when the segment finishes execution? (74) .Ⅰ.x=1,y=2Ⅱ.x=1,y=3Ⅲ.x=4,y=6(74) A.ⅠB.Ⅰ,ⅡC.Ⅰ,ⅢD.Ⅱ and Ⅲ

●由6个字符的7位ASCⅡ编码排列,再加上水平垂直奇偶校验位构成下列矩阵(最后一列为水平奇偶校验位,最后一行为垂直奇偶校验位)。字符:3 0 X1 X2 0 0 1 1 0I 1 0 0 1 0 0 X3 1+ X4 1 0 1 0 1 1 07 0 1 X5 X6 1 1 1 1D 1 0 0 X7 1 0 X8 0= 0 X9 1 1 1 X10 1 10 0 1 1 1 X11 1 X12则X1X2X3X4处的比特分别为 (4) ;X5X6X7X8处的比特分别为 (5) ;X9X10X11X12处的比特分别为 (6) 。(4) A.1010B.1100C.1110D.1111(5) A.1000B.1010C.1100D.1110(6) A.1000B.1001C.1010D.1011

阅读下列程序段:x = 0For i = 1 To 4For j = 1 To ix = x + 1Next j, i执行以上循环后,x 的值为( )。A、 6B、 9C、 10D、 16

写出下列线性规划问题的对偶问题:(1)MinZ=2x1+8x2−4x3(1{x1+3x2−3x3≥30−x1+5x2+4x3=804x1+2x2−4x3≤50x1≤0,x2≥0,x3无限制(2)MinZ=2x1+8x2−4x3(2){x1+3x2−3x3≥30−x1+5x2+4x3=804x1+2x2−4x3≤50x1≤0,x2≥0,x3无限制

有以下程序#include stdio.hvoid exch(int t[ ]){ t[0]=t[5]; }main( ){ int x[10]={1,2,3,4,5,6,7,8,9,10),i=0;while(i=4){ exch(x[i]); i++; }for( i=0; 15;i++) printf(”%d",x[i]);.printf( "\n");}程序运行后输出的结果是A) 2 4 6 8 10B) 1 3 5 7 9C) 1 2 3 4 5D) 6 7 8 9 10

Which of the following indicate(s)possible values for the variables when the segment finishes execution?(74).Ⅰ. x=1,y=2Ⅱ. x=1,y=3Ⅲ. x=4, y=6A.ⅠB.Ⅰ,ⅡC.Ⅰ, ⅢD.ⅡandⅢ

用函数的图象求下列方程的解:(1)x²-3x+2=0;(2)-x²-6x-9=0 ;(3)x²+x+2=0; (4)1-x-2x²=0 。

A view is created with the following statement:CREATE VIEW v1 AS SELECT col1, col2, col3 FROM t1 WHERE col4 > 1000 ; When will DB2 access the data from table T1 for view V1?() A.When view V1 is createdB.Each time the REFRESH VIEW v1 statement is executedC.Each time an SQL statement is executed against view V1D.Only the first time an SQL statement is executed against view V1

过点P1(1,1,1),P2(2,0,1)及P3(-1,-1,0)的平面方程是( )。A、x+y-4z+2=0B、x-y-4z+2=0C、x+y-4z-2=0D、x-y-4z-2=0

已知3x*x=2x+1,则9x*x-4x*x-4x+1= A. 0B. 1C. 2D. 4

int x=0  step1   for(; x  11 ; x++) {   if(x = = 6) {   x= 8   break step1;   }   if( x = = 3 ) {   x+ +   continue   }   System.out.print(x +“ ”);   }   结果为:()  A、0 1 2B、0 1 2 5C、0 1 2 4 5D、0 1 2 5 8 9 10E、0 1 2 5 8 9 10 11

对于函数F(x)=x12+2x22,从初始点x(0)=[1,1]T出发,沿方向s(0)=[-1,-2]T进行一维搜索,最优步长因子为()。A、10/16B、5/9C、9/34D、1/2

以下创建数组的方式错误的是()A、shortx[];x={1,2,3,4,5,6};B、shortx[]=newshort[6];x[0]=9;x[1]=8;x[2]=7;x[3]=6;x[4]=5;x[5]=4;C、shortx[]=newshort[6];intlen=x.length;for(inti=0;iD、short[][]x={{1,2},{3,4,5},{6,7,8,9}};

过点(-1,0,1)且与平面x+y+4z+19=0平行的平面方程为()。A、x+y+4z-3=0B、2x+y+z-3=0C、x+2y+z-19=0D、x+2y+4z-9=0

You are the administrator of a Windows Server 2003 computer named Server1. Server1 stops responding several times. Each time, the following stop error message is displayed: "0x000000D1 (0x0000000c, 0x00000002, 0x00000000, 0xf27b4e8e) IRQL_NOT_LESS_OR_EQUAL." You suspect that a hardware component is causing the problem, and you contact the vendor. The vendor requires debugging information. You need to configure Server1 to generate a file that contains relevant information for the vendor. What should you do? ()A、Configure Server1 to perform a memory dump.B、Add the /debug option to the Boot.ini file on Server1.C、Enable Physical Addressing Extensions on Server1.D、Install the Recovery Console on Server1.

填空题y = mx2In the equation above, m is a constant. If y = 32 when x = 4, then when y = 18, which of the following could be the value of x?____

单选题Which of the following choices could be equal to set Z ifX = {2, 5, 6, 7, 9} and Y = {2, 5, 7}X ∪ Y ∪ Z = {1, 2, 3, 4, 5, 6, 7, 8, 9}X ∩ Z = {2, 6}Y ∩ Z = {2}AZ= {1, 4, 8}BZ= {1, 3, 8}CZ= {1, 3, 4, 8}DZ= {1, 2, 3, 4, 6, 8}EZ= {1, 2, 3, 5, 6, 8}

单选题You are the administrator of a Windows Server 2003 computer named Server1. Server1 stops responding several times. Each time, the following stop error message is displayed: "0x000000D1 (0x0000000c, 0x00000002, 0x00000000, 0xf27b4e8e) IRQL_NOT_LESS_OR_EQUAL." You suspect that a hardware component is causing the problem, and you contact the vendor. The vendor requires debugging information. You need to configure Server1 to generate a file that contains relevant information for the vendor. What should you do? ()AConfigure Server1 to perform a memory dump.BAdd the /debug option to the Boot.ini file on Server1.CEnable Physical Addressing Extensions on Server1.DInstall the Recovery Console on Server1.

多选题Select all the values of x which make the following true: 2x4 = 7x3 + 4x2.A0B-1/2C-1D2E4

单选题maxZ=3x1+x2,4x1+3x2≤7,x1+2x2≤4,x1,x2=0或1,最优解是()A(0,0)B(0,1)C(1,0)D(1,1)

单选题曲面z-ez+2xy=3在点(1,2,0)处的切平面方程为(  )。A4(x+1)+2(y-2)=0B4(x-1)+2(y-2)=0C4(x-1)-2(y-2)=0D4(x-1)+2(y+2)=0

单选题以下创建数组的方式错误的是()Ashortx[];x={1,2,3,4,5,6};Bshortx[]=newshort[6];x[0]=9;x[1]=8;x[2]=7;x[3]=6;x[4]=5;x[5]=4;Cshortx[]=newshort[6];intlen=x.length;for(inti=0;iDshort[][]x={{1,2},{3,4,5},{6,7,8,9}};

单选题int x=0  step1   for(; x  11 ; x++) {   if(x = = 6) {   x= 8   break step1;   }   if( x = = 3 ) {   x+ +   continue   }   System.out.print(x +“ ”);   }   结果为:()A0 1 2B0 1 2 5C0 1 2 4 5D0 1 2 5 8 9 10E0 1 2 5 8 9 10 11

单选题设X为整数,[X]补=1,X1X2X3X4,满足()时,X>-8成立。AX1=0,X2~X4至少有一个为1BX1=0,X2~X4任意CX1=1,X2~X4至少有一个为1DX1=1,X2~X4

单选题设函数y=y(x)由方程y=f(x2+y2)+f(x+y)所确定,且y(0)=2,其中f是可导函数,f′(2)=1/2,f′(4)=1,则dy/dx|x=0=(  )。A-1/2B-1/4C-1/7D-1/9