单选题If x is a positive integer and (x-6)2 = 9, then x2 = ______.A3B9C16D36E49

单选题
If x is a positive integer and (x-6)2 = 9, then x2 = ______.
A

3

B

9

C

16

D

36

E

49


参考解析

解析:
If x is a positive integer and (x-6)2 = 9, the expression inside the parentheses must be equal to 3 or -3. If x-6=3, then x=9 and x2=81. But 81 is not one of the choices. If x-6=-3, then x=-3+6=3, so x2=9.

相关考题:

整数5874192能被()整除 A、3B、9C、3与9D、3或9

求满足下列各式的未知数x:(1)x2=49;(2)x225/81

单击命令按钮执行下列程序,其输出结果是( )。Private Sub Command1_Click()Dim a As Integer,b As Integer,c As Integera=3b=4c=5Prim SecProc(c,b,A)End SubFunction FirProc(x As Integer,y As Integer,z As Integer)FirProc=2*x+y+3*zEnd FunctionFunction SecProc(x As Integer,y As Integer,z As Integer)SecProc=FirProc(z,x,y)+xEnd FunctionA.20B.22C.28D.30

单击按钮时,以下列程序运行后的输出结果是 Private Sub proc1(x As Integer,y As Integer,z As Integer) x=3*z y=2*z z=X+y End Sub Private Sub Command1_Click( ) Dim x As Integer,y As Integer,z As Integer x=1:y=2:z=3 Call proc1(x,x,2) Print x;x;z Call proc1(x,y,y) Print x;y;y End SubA.6 6 12 6 6 10B.9 5 10 5 10 10C.9 6 12 9 10 15D.9 5 10 5 4 10

程序段如下,当发生Form_Click事件时,窗体上输出的结果是( )。 Option Explicit Private x As Integer Public y As Integer Sub Test() Dim y as integer x=2:y=2 Print"x1=";x;"y1=";y End Sub Private Sub Form_Click() x=1:y=1 Test Print "X2=";x;"y2=";y End SubA.x1=2 y1=2 x2=2 y2=1B.x1=2 y1=2 x2=2 y2=2C.x1=2 y1=1 x2=2 y2=2D.x1=2 y1=1 x2=2 y2=1

单击按钮时,以下程序运行后的输出结果是 Private Sub Commandl_Click( ) Dim X As Integer,y As Integer,z As Integer x=1:y=2: Z=3 Call God(x,x,z) Print x;x;z Call God(x,y,y) Print X;y;y End Sub Private Sub God(x As Integer,y As Integer,z As Integer) x=3 * Z + 1 y=2 * Z z=x + y End SubA.6 6 12 7 11 11B.8 5 10 5 11 11C.9 6 12 9 10 15D.8 10 10 5 9 10

球面x2 + y2 + z2 = 9与平面x + z = 1的交线在xoy坐标面上投影的方程是: (A) x2 + y2 + (1-x)2 = 9(C) (1-z)2 + y2 + z2 = 9

设f(x)是连续函数, 则f(x)=A. x2 B. x2-2 C 2x D. x2 -16/9

锚地、停泊场、航道和底质复杂海区,底质点密度一般为图上()cm2一个点。A:1~4B:4~9C:9~16D:16~

绒毛取样可以在妊娠早期()周进行。A、5B、9C、16D、20

X2值的取值范围为()。A、-∞<X2<+∞B、0≤X2≤+∞C、X2≤1D、-∞≤X2≤0E、X2≥1

萤石工作室最多可以同时预览()路画面?A、4B、9C、16D、25

非洲猪瘟的潜伏期为()天。A、2~3B、6~9C、7~12D、4-19

在3×3的行×列表X2检验中,X2-163.01,确定P值时,自由度等于()。A、3B、1C、9D、4E、6

立即寻址方式中的立即数可以为()位。A、8B、9C、16D、8和16

已知函数定义Functionf(x1%,x2%)as integer,则下列调用语句正确的是()A、a=f(x,y)B、call f(x,y)C、f(x,y)D、fxy

下列属于一般低档商品的是()。A、收入效应X1X*=-2,替代效应X*X2=+3B、收入效应X1X*=-5,替代效应X*X2=+2C、收入效应X1X*=-5,替代效应X*X2=+8D、收入效应X1X*=+5,替代效应X*X2=+2E、收入效应X1X*=+5,替代效应X1X*=-5

ZXSDR_B8200_L200支持X2接口连接数最大()个。A、4B、8C、16D、32

CE6875可支持多少台设备堆叠()A、6B、9C、16D、8

现有:  public class Tester {  public static void main (String[] args)  {      intx-5;  Integer xl=x;  Integer x2=x;     int x3=new Integer(5);  system..ut.print(x1.equals(x));      system..ut.print(xl==x);  system..ut.print(x2.equals(xl));      system..ut.print(x2==xl);      system..ut.print(x2==x3);  system..ut.print(x2.equals(x3));         }      }      结果为:()     A、编译失败B、falsefalsetruetruetruetrueC、truetruetruetruetruetrueD、falsefalsetruetruetruefalseE、truefalsetruefalsefalsetrueF、运行时异常被抛出

财富帐户帐户号为()位数字。A、8B、9C、16D、12

单选题现有:  public class Tester {  public static void main (String[] args)  {      intx-5;  Integer xl=x;  Integer x2=x;     int x3=new Integer(5);  system..ut.print(x1.equals(x));      system..ut.print(xl==x);  system..ut.print(x2.equals(xl));      system..ut.print(x2==xl);      system..ut.print(x2==x3);  system..ut.print(x2.equals(x3));         }      }      结果为:()A编译失败BfalsefalsetruetruetruetrueCtruetruetruetruetruetrueDfalsefalsetruetruetruefalseEtruefalsetruefalsefalsetrueF运行时异常被抛出

单选题设随机变量X的二阶矩存在,则(  )。AE(X2)<E(X)BE(X2)≥E(X)CE(X2)<(EX)2DE(X2)≥(EX)2

单选题已知函数定义Functionf(x1%,x2%)as integer,则下列调用语句正确的是()Aa=f(x,y)Bcall f(x,y)Cf(x,y)Dfxy

单选题For all positive integers a and b, let (a|b)=(a-b)/(a+b) If m is a positive integer, what is (m|2m) ?A-1/2B-1/3C1/3D1/2E2

单选题如果x1,x2,…,x9是正整数,且x1<x2<…<x9,x1+x2+…+x8+x9=250,则x9的最小值为(  )。A29B30C31D32

单选题设(d/dx)f(x)=g(x),h(x)=x2,则(d/dx)f[h(x)]等于:()Ag(x2)B2xg(x)Cx2g(x2)D2xg(x2)