问题 单项选择题

符合国家《招标投标法》的各类工程招标内容包括与项目的工程建设有关的重要设备、材料的采购和以下哪个选项?()

A.项目的设计、施工、监理、建设管理

B.项目的设计、施工、监理、运行管理

C.项目的勘测、设计、施工、监理

D.项目的勘测、设计、建设管理、运行管理

答案

参考答案:C

解析:《中华人民共和国招标投标法》第三条规定,在中华人民共和国境内进行下列工程建设项目包括项目的勘察、设计、施工、监理以及与工程建设有关的重要设备、材料等的采购,必须进行招标:①大型基础设施、公用事业等关系社会公共利益、公众安全的项目;②全部或者部分使用国有资金投资或者国家融资的项目;③使用国际组织或者外国政府贷款、援助资金的项目。

问答题

【说明】
下面的程序先构造Point类,再顺序构造Ball类。由于在类Ball中不能直接存取类Point中的xCoordinate及yCoordinate属性值,Ball中的toString方法调用Point类中的toStrinS方法输出中心点的值。在MovingBsll类的toString方法中,super.toString调用父类Ball的toString方法输出类Ball中声明的属性值。
【Java代码】
//Point.java文件
public class Point
private double xCoordinate;
private double yCoordinate;
public Point()
public Point(double x,double y)
xCoordinate=x;
yCoordinate=y;

public String toStrthg()
return"("+Double.toString(xCoordinate)+","
+Double.toString(yCoordinate)+")";

//other methods

//Ball.java文件
public class Ball
private (1) ;//中心点
private double radius;//半径
private String color;//颜色
public Ball()
public Ball(double xValue, double yValue, double r)
//具有中心点及其半径的构造方法
center= (2) ;//调用类Point中的构造方法
radius=r;

public Ball(double xValue, double yValue, double r, String c)
//具有中心点、半径和颜色的构造方法
(3) ;//调用3个参数的构造方法
color=c;

public String toString()
return "A ball with center"+center.toString()
+",radius "+Double.toString(radius)+",color"+color;

//other methods

class MovingBall (4)
private double speed;
public MovingBall()
public MoyingBall(double xValue, double yValue, double r, String c, double s)
  (5) ;//调用父类Ball中具有4个参数的构造方法
speed=s;

public String toString()
return super.toString()+",speed"+Double.toString(speed);

//other methods

public class test
public static void main(String args[])
MovingBall mb=new MovingBall(10,20,40,"green",25);
System.out.println(mb);

单项选择题

Everyone gets angry sometimes, but being angry doesn’t really solve much. Your goal is to calm yourself down. This is (1) for some people. Instead of calming down, they might get more and more upset (2) they explode like a volcano. Some people might say they have trouble (3) their temper. Sometimes angry feelings can be hard to (4) . So what do you do if your temper is like a volcano

Well, the good news is (5) people don’t keep making the same mistakes over and over again. You can train your temper. Here are steps you can (6) at any time.

Get a lot of (7) activity. Exercise can be good because it is a way of (8) energy and stress. You can dance around your room (9) your favorite music, too.

Talk to your mom or dad. If you’re having trouble with your temper, tell your parents you’re trying to do a (10) job of controlling yourself. Let them know you are going to ask for their help.

Put (11) into words. Get into the habit of saying what you are feeling and why. (12) using words might help you manage your p feelings and behaviors.

Take a break from the (13) . If you are in an argument with someone, go to another part of your house. You can just say, "I want to be (14) for a while so I can calm down. "

Go into a (15) . If you fed angry and think you need a timeout to calm down, don’t (16) your parents to tell you to take a timeout for yourself. Let your family know that when you’re taking a timeout, they need to (17) your space and leave you alone. While you are sitting in your chair, try to take deep (18) .

Learn to shift. The idea is to shift from a really angry mood to a better mood. After you (19) the angry feelings out, you have to start thinking about other things, You can say, "I (20) my temper, but I’m going to get myself under control now.

11()

A. feelings

B. hearings

C. actions

D. sayings