niusouti.com

单选题A circle with center A has its center at (6, -2) and a radius of 4. Which of the following is the equation of a line tangent to the circle with center A ?A y=3x+2B y=2x+1C y=-x+5D y=-2E y=-6

题目
单选题
A circle with center A has its center at (6, -2) and a radius of 4. Which of the following is the equation of a line tangent to the circle with center A ?
A

y=3x+2

B

y=2x+1

C

y=-x+5

D

y=-2

E

y=-6


相似考题
更多“单选题A circle with center A has its center at (6, -2) and a radius of 4. Which of the following is the equation of a line tangent to the circle with center A ?A y=3x+2B y=2x+1C y=-x+5D y=-2E y=-6”相关问题
  • 第1题:

    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=6

    A.Ⅰ

    B.Ⅰ,Ⅱ

    C.Ⅰ, Ⅲ

    D.ⅡandⅢ


    正确答案:D
    解析:译文:结构CobeginStatement1;Statement2;Coend的含义是语句1和语句2并行执行。结构中的两个原子操作是加载一个变量的值和存储一个变量的值。【程序段】x=0;y=0;cobegin{x=1;y+=x;}{y=2;x+=3;}coend执行后,变量的值可能是哪个?先执行第二句再执行第一句,结果是Ⅱ,否则结果是Ⅲ。

  • 第2题:

    阅读下列说明和C++代码,填写程序中的空(1)~(6),将解答写入答题纸的对应栏内。 【说明】以下C++代码实现一个简单绘图工具,绘制不同形状以及不同颜色的图形。部分类及其关系如图6-1所示。

    【C++代码】#include #include using namespace std;class DrawCircle { //绘制圆形,抽象类 public: (1) ;//定义参数为 int radius, int x, int y virtual~DrawCircle() { }}; class RedCircle:public DrawCircle { //绘制红色圆形 public: void drawCircle(int radius, int x, int y) { cout << "Drawing Circle[red,radius: " < drawCircle = drawCircle; } virtual~shape() { } public: virtual void draw() = 0;}; class Circle:public Shape { //圆形 private: int x,y,radius; public: Circle(int x,int y,int radius,DrawCircle *drawCircle) (3) { this->x = x; this->y = y; this->radius = radius; } public: void draw() { drawCircle -> (4) ; }}; int main(){ Shape *redCircle=new Circle(100,100,10, (5) );//绘制红色圆形 Shape *greenCircle=new Circle(100,100,10, (6) );//绘制绿色圆形 redCircle ->draw(); greenCircle ->draw(); return 0;}


    答案:
    解析:
    (1)void drawCircle (int radius,int x,int y)(2)DrawCircle*drawCircle(3)drawcircle(4)drawCircle(radius,x,y)(5)new redCircle()(6)new greenCircle()
    【解析】

    第一空是填接口里面的方法,在接口的实现里面找,可以发现应该填void drawCircle (int radius,int x,int y)。第二空可以根据后面this drawCircle=drawCircle判断,这里应该有一个drawCircle属性,因此应该填)DrawCircle drawCircle。第三空这里填drawcircle,用-> drawcircle来引用父类的成员。第四空调用drawCircle(radius,x,y)方法。第五、六空分别创建一个红色圆形对象和一个绿色圆形对象作为Circle里面的实参。

  • 第3题:

    阅读下列说明和C++代码,填写程序中的空(1)~(6),将解答写入答题纸的对应栏内。
    【说明】
    以下C++代码实现一个简单绘图工具,绘制不同形状以及不同颜色的图形。部分类及其关系如图6-1所示。



    【C++代码】
    #include?#include?using?namespace?std;class?DrawCircle?{??????//绘制圆形,抽象类? ? ? public: (1);//定义参数为?int?radius,?int?x,?inty? ?virtual~DrawCircle()?{?}};class?RedCircle:public?DrawCircle?{????//绘制红色圆形? ? ? ? public: void?drawCircle(intradius,?int?x,?int?y)?{cout?<?drawCircle?=?drawCircle;? }? ?virtual~shape()?{?}? public:? ?virtual?void?draw()?=?0;};class?Circle:public?Shape?{????//圆形? ? private:? ? ?int?x,y,radius;? ? public:? Circle(int?x,inty,int?radius,DrawCircle?*drawCircle)? (3)? {? this->x?=?x;? ?this->y?=?y;? ? this->radius?=?radius; }? ? ? public:? void?draw(){? drawCircle?-> (4); }};int?main(){Shape?*redCirclenew?Circle(100,100,10,????(5)????);//绘制红色圆形? Shape?*greenCircle=new?Circle(100,100,10, (6)??);//绘制绿色圆形redCircle >draw();? ?greenCircle?->draw();? ?return?0;}


    答案:
    解析:
    (6)(1)void drawCircle (int radius,int x,int y)
    (2)DrawCircle*drawCircle
    (3)drawcircle
    (4)drawCircle(radius,x,y)
    (5)new RedCircle()
    (6)new GreenCircle()【解析】
    第一空是填接口里面的方法,在接口的实现里面找,可以发现应该填void drawCircle (int radius,int x,int y)。
    第二空可以根据后面this drawCircle=drawCircle判断,这里应该有一个drawCircle属性,因此应该填)DrawCircle drawCircle。
    第三空这里填drawcircle,用-> drawcircle来引用父类的成员。
    第四空调用drawCircle(radius,x,y)方法。
    第五、六空分别创建一个红色圆形对象和一个绿色圆形对象作为Circle里面的实参。

  • 第4题:

    public abstract class Shape {  int x;  int y;  public abstract void draw();  public void setAnchor(int x, int y) {  this.x = x;  this.y = y;  }  }  and a class Circle that extends and fully implements the Shape class. Which is correct?() 

    • A、 Shape s = new Shape(); s.setAnchor(10,10); s.draw();
    • B、 Circle c = new Shape(); c.setAnchor(10,10); c.draw();
    • C、 Shape s = new Circle(); s.setAnchor(10,10); s.draw();
    • D、 Shape s = new Circle(); s->setAnchor(10,10); s->draw();
    • E、 Circle c = new Circle(); c.Shape.setAnchor(10,10); c.Shape.draw();

    正确答案:C

  • 第5题:

    在NBDP通信中,呼叫台的9位MMSI将变换成Y()

    • A、Y1RQY2RQY3Y4Y5Y6Y7
    • B、Y1aY2aY3Y4Y5Y6Y7
    • C、Y1aY2Y3Y4Y5Y6aY7
    • D、Y1RQY2Y3Y4Y5Y6RQY7

    正确答案:B

  • 第6题:

    在NBDP通信中,被呼叫台的9位MMSI将变换成Y1Y2Y3Y4Y5Y6Y7识别信号,并形成呼叫字组,其中()是正确.

    • A、Y1RQY2RQY3Y4Y5Y6Y7
    • B、Y1aY2aY3Y4Y5Y6Y7
    • C、Y1aY2Y3Y4Y5Y6aY7
    • D、Y1RQY2Y3Y4Y5Y6RQY7

    正确答案:A

  • 第7题:

    单选题
    If 7y+9 represents an odd integer, which of the following represents the next smaller odd integer?
    A

    7(y+1)

    B

    7(y-2)

    C

    7(y+3)

    D

    7(y+2)

    E

    7(y-2)+1


    正确答案: A
    解析:
    根据奇整数的排列顺序特点,相邻两奇整数之差为2,因此比7y+9小的相邻奇整数为(7y+9)-2=7y+7=7(y+1)。

  • 第8题:

    填空题
    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?____

    正确答案: B
    解析:
    因为y = mx2 ,将x = 4, y = 32代入到等式中32 = m(4)2,2 = m,将y=18代入到y=2x2 ,2x2=9,x=-3或x=3。

  • 第9题:

    单选题
    For all real values of x and y, let x◆y be defined by the equation x◆y = 2 -xy. If -1 < a < 0 and 0 < b < 1, then which of the following must be true?
    A

    -2<a+b<-1

    B

    -l<a+b<0

    C

    0<a+b<l

    D

    l<a+b<2

    E

    2<a+b<3


    正确答案: B
    解析:
    根据题干,发现a= -1/2, b =1/2满足已知条件,a◆b=2-ab,将a= -1/2, b =1/2代入进去,则(-1/2) ◆(1/2) = 2 - (-1/2)(1/2) = 2 + 1/4 = 2.25,故选E。

  • 第10题:

    单选题
    If each of the equations below is graphed on the xy-plane, which one will produce a line with a positive slope containing the point (3, 2)?
    A

    x+y=5

    B

    x - y = 1

    C

    3x-2y = 10

    D

    x2 -y=5

    E

    x +y2 = 7


    正确答案: A
    解析:
    因为直线方程式不包含带平方的项,如x2 或y2 ,所以D和E不正确,因为它们不是直线。将点(3,2)代入到各个选项中,C项不符合。因为A项斜率为-1,不符合,故选B。

  • 第11题:

    单选题
    在NBDP通信中,呼叫台的9位MMSI将变换成Y1Y2Y3Y4Y5Y6Y7识别信号,并形成识别字组,其中()是正确.
    A

    Y1RQY2RQY3Y4Y5Y6Y7

    B

    Y1aY2aY3Y4Y5Y6Y7

    C

    Y1aY2Y3Y4Y5Y6aY7

    D

    Y1RQY2Y3Y4Y5Y6RQY7


    正确答案: B
    解析: 暂无解析

  • 第12题:

    单选题
    Line l passes through the origin and is perpendicular to the line given by the equation 2x + y = 8. Which of the following points is NOT on line l?
    A

    (-4, -2)

    B

    (-1,1)

    C

    (2,1)

    D

    (4,2)

    E

    (7,3.5)


    正确答案: A
    解析:
    2x+y=8,所以y =-2x + 8,因为函数是斜截式且斜率为-2。垂直于x-y平面的的直线的斜率互为反倒数。所以斜率Line1的斜率为1/2,又因为Line l经过原点且与y =-2x + 8垂直。所以Line 1为y =(1/2)x。以上四个选项中可知只有B点在Line l上。

  • 第13题:

    根据程序中的注释将下列缺失部分补充完整。

    class Point{

    int x,y; //点的x和y坐标

    public:

    Point(int xx=0,int yy=0):x(xx),y(yy){}

    };

    class Circle{

    Point center;//圆心位置

    int radius; //半径

    public: //利用cx和cY分别初始化圆心的x和y坐标

    circle(int cx,int cy,int r): 【 】 ,radius(r){}

    void area()(cout<<3.14159*radius*radius<<end1;)

    };


    正确答案:center(cxcy)
    center(cx,cy) 解析:center在类Circle中声明为成员对象。成员对象的初始化工作是在成员初始化列表中完成的。初始化的一般格式如下:
    <类名>(<总形参表>):<成员对象1>(<形参表1>),<成员对象2>(<形参表2>),…
    {

    }

  • 第14题:

    阅读以下说明和Java程序,填写程序中的空(1)~(6),将解答写入答题纸的对应栏内。
    【说明】
    以下Java代码实现一个简单绘图工具,绘制不同形状以及不同颜色的图形。部分接口、类及其关系如图5-1所示。




    【Java代码】
    interface?DrawCircle?{? //绘制圆形 public(1) ;}class?RedCircle?implements?DrawCircle?{? ?//绘制红色圆形???????public?void?drawCircle(int?radius,intx,?int?y)??{????????????System.out.println("Drawing?Circle[red,radius:"?+?radius?+",x:"?+?x?+?",y:"?+y+?"]");???????}}class?GreenCircle?implements?DrawCircle?{????//绘制绿色圆形??????public?void?drawCircle(int?radius,?int?x,int?y)?{???????????System.out.println("Drawing?Circle[green,radius:"?+radius+",x:?"?+x+?",y:?"?+y+?"]");??????}}abstract?class?Shape?{????//形状? protected? ? (2)???;? ? public?Shape(DrawCircle?drawCircle)?{? ?this.drawCircle=?drawCircle;? ? ? public?abstract?void?draw();}class?Circle?extends?Shape?{? //圆形? ?private?int?x,y,radius;? public?Circle(int?x,int?y,intradius,DrawCircle?drawCircle)?{? ?(3)???;? this.x?=?x;? ? ? this.y?=?y;? ?this.radius?=radius;? }? ? ?public?void?draw()?{? ? drawCircle.? ?(4)? ?;? ? ? }}public?class?DrawCircleMain?{? public?static?void?main(String[]?args)?{? Shape?redCircle=new?Circle(?100,100,10,? (5) );//绘制红色圆形? Shape?greenCircle=new?Circle(200,200,10,(6) );//绘制绿色圆形? ?redCircle.draw(); greenCircle.draw();? ?}}


    答案:
    解析:
    (1)void drawCircle (int radius,int x,int y)
    (2)DrawCircle drawCircle
    (3)super.drawcircle=drawcircle
    (4)drawCircle(radius,x,y)
    (5)new RedCircle()
    (6)new GreenCircle()【解析】
    第一空是填接口里面的方法,在接口的实现里面找,可以发现应该填void drawCircle (int radius,int x,int y)。
    第二空可以根据后面this drawCircle=drawCircle判断,这里应该有一个drawCircle属性,因此应该填)DrawCircle drawCircle。
    第三空这里用super,用super. drawcircle来引用父类的成员。
    第四空调用drawCircle(radius,x,y)方法。
    第五、六空分别创建一个红色圆形对象和一个绿色圆形对象作为Circle里面的实参。

  • 第15题:

    设P是指向A的指针,Y为整型量,A=5,A的地址为FE03;B=6,B的地址为FE04;下列语句分别执行的结果是()。 1)Y=*&A; 2)Y=*P++; 3)Y=&++A; 4)Y=*++P

    • A、1)Y=4;2)Y=4;3)Y=FE05;4)Y=7
    • B、1)Y=7;2)Y=7;3)Y=FE02;4)Y=4
    • C、1)Y=6;2)Y=6;3)Y=FE03;4)Y=5
    • D、1)Y=5;2)Y=5;3)Y=FE04;4)Y=6

    正确答案:D

  • 第16题:

    在NBDP通信中呼叫台的9位MMSI将变成Y1Y2Y3Y4Y5Y6Y7识别信号,并形成呼叫字组,其中()是正确.

    • A、Y1-RQ-Y2,RQ-Y3-Y4,Y5-Y6-Y7
    • B、Y1-a-Y2,a-Y3-Y4,Y5-Y6-Y7
    • C、Y1-a-Y2,Y3-Y4-Y5,a-Y6-Y7
    • D、Y1-RQ-Y2,Y3-Y4-Y5,QR-Y6-Y7

    正确答案:A

  • 第17题:

    在NDBP通信中呼叫台的9位MID将变换成Y1Y2Y3Y4Y5Y6Y7识别信号,并形成识别字组,其中()是正确的.

    • A、Y1-RQ-Y2,RQ-Y3-Y4,Y5-Y6-Y7
    • B、Y1-a-Y2,a-Y3-Y4,Y5-Y6-Y7
    • C、Y1-a-Y2,Y3-Y4-Y5,a-Y6-Y7
    • D、Y1-RQ-Y2,Y3-Y4-Y5,Y6-RQ-Y7

    正确答案:B

  • 第18题:

    public abstract class Shape {  private int x;  private int y;  public abstract void draw();  public void setAnchor(int x, int y) {  this.x = x;  this.y = y;  }  }  Which two classes use the Shape class correctly?()

    • A、 public class Circle implements Shape { private int radius; }
    • B、 public abstract class Circle extends Shape { private int radius; }
    • C、 public class Circle extends Shape { private int radius; public void draw(); }
    • D、 public abstract class Circle implements Shape { private int radius; public void draw(); }
    • E、 public class Circle extends Shape { private int radius;public void draw() {/* code here */} }
    • F、 public abstract class Circle implements Shape { private int radius;public void draw() { / code here */ } }

    正确答案:B,E

  • 第19题:

    多选题
    Which of the following equations are for lines which are perpendicular to the line y=2x+4?
    A

    2y +x = 5

    B

    2y –x = 3

    C

    x + 2y = 7

    D

    x – 2y = 4

    E

    4y +2x = 0


    正确答案: C,B
    解析:
    直线y=2x+4的斜率为2,所以与其垂直的直线的斜率为-1/2,故本题选择ACE三项。

  • 第20题:

    单选题
    具有特解y1=e-x,y2=2xe-x,y3=3ex的三阶常系数齐次线性方程是(  )。
    A

    y‴-y″-y′+y=0

    B

    y‴+y″-y′-y=0

    C

    y‴-6y″+11y′-6y=0

    D

    y‴-2y″-y′+2y=0


    正确答案: C
    解析:
    由题设可知,该齐次方程的通解为y=(C1+C2x)ex+C3ex,则r=-1是特征方程的二重特征根,r=1是特征方程的单根,故其特征方程为(r+1)2(r-1)=0即r3+r2-r-1=0。故所求三阶常系数线性齐次方程为y‴+y″-y′-y=0。

  • 第21题:

    单选题
    A circle with center A has its center at (6, -2) and a radius of 4. Which of the following is the equation of a line tangent to the circle with center A ?
    A

    y=3x+2

    B

    y=2x+1

    C

    y=-x+5

    D

    y=-2

    E

    y=-6


    正确答案: A
    解析:
    切线指与圆相交且与圆只有一个焦点的线。A、B与圆不相交。C、D 与圆相交且有两个交点。只有E项符合。

  • 第22题:

    单选题
    public abstract class Shape {  int x;  int y;  public abstract void draw();  public void setAnchor(int x, int y) {  this.x = x;  this.y = y;  }  }  and a class Circle that extends and fully implements the Shape class. Which is correct?()
    A

     Shape s = new Shape(); s.setAnchor(10,10); s.draw();

    B

     Circle c = new Shape(); c.setAnchor(10,10); c.draw();

    C

     Shape s = new Circle(); s.setAnchor(10,10); s.draw();

    D

     Shape s = new Circle(); s->setAnchor(10,10); s->draw();

    E

     Circle c = new Circle(); c.Shape.setAnchor(10,10); c.Shape.draw();


    正确答案: A
    解析: 暂无解析

  • 第23题:

    单选题
    在NBDP通信中,呼叫台的9位MMSI将变换成Y()
    A

    Y1RQY2RQY3Y4Y5Y6Y7

    B

    Y1aY2aY3Y4Y5Y6Y7

    C

    Y1aY2Y3Y4Y5Y6aY7

    D

    Y1RQY2Y3Y4Y5Y6RQY7


    正确答案: A
    解析: 暂无解析

  • 第24题:

    单选题
    在NDBP通信中呼叫台的9位MID将变换成Y1Y2Y3Y4Y5Y6Y7识别信号,并形成识别字组,其中()是正确的.
    A

    Y1-RQ-Y2,RQ-Y3-Y4,Y5-Y6-Y7

    B

    Y1-a-Y2,a-Y3-Y4,Y5-Y6-Y7

    C

    Y1-a-Y2,Y3-Y4-Y5,a-Y6-Y7

    D

    Y1-RQ-Y2,Y3-Y4-Y5,Y6-RQ-Y7


    正确答案: D
    解析: 暂无解析