甲以欺诈手段订立合同,损害国家利益。该合同应属于无效合同,而不是可撤销合同。
参考答案:对
下列各项中,属于《预算法》规定的县级以上地方各级人民代表大会职权的有()。
A.审查本级总预算草案及本级总预算执行情况的报告
B.批准本级预算和本级预算执行情况的报告
C.改变或撤销本级人民代表大会常务委员会关于预算、决算的不适当的决议
D.撤销本级政府关于预算、决算的不适当的决定和命令
阅读下列程序,请写出程序的运行结果。 import java. applet.*; import java.awt.*; public class C extends Applet implements Runnable Thread redBall,blueBall;Graphics redPen,bluePen;int blueSeta=0,redSeta=0;public void init() setSize(250,200); redBall=new Thread(this); blueBall=new Thread(this); redPen=getGraphics(); bluePen=getGraphics(); redPen.setColor(Color. red); bluePen.setColor(Color. blue); setBackground(Color. gray); public void start() redBall.start(); blueBall.start(); public void run() int x,y; while(true) if(Thread.currentThread()==redBall)//以下代码为顺时针画圆 x=(int)(80.0*Math.cos(3.1415926/180.0*redSeta)); y=(int)(80.0*Math.sin(3.1415926/180.0*redSeta)); redPen.setColor(Color.gray); redPen.fillOval(100+x,100+y,10,10); redSeta+=3; if(redSeta>=360)redSeta=0; x=(int)(80.0*Math.cos(3.1415926/180.0*redSeta)); y=(int)(80.0*Math.sin(3.1415926/180.0*redSeta)); redPen.setColor(Color.red); redPen.fillOval(100+x,100+y,10,10); try redBall.sleep(20); catch(InterruptedException e)else if(Thread.currentThread()==blueBall)//以下代码为顺时针画圆x=(int)(80.0*Math.cos(3.1415926/180.0*blueSeta));y=(int)(80.0*Math.sin(3.1415926/180.0*blueSeta));bluePen.setColor(Color.gray);bluePen.fillOval(150+x,100+y,10,10);blueSeta-=3;if(blueSeta<=-360) blueSeta=0;x=(int)(80.0*Math.cos(3.1415926/180.0*blueSeta));y=(int)(80.0*Math.sin(3.1415926/180.0*blueSeta));bluePen.setColor(Color.blue);bluePen.fillOval(150+x,100+y,10;10);try blueBall.sleepp(40);catch(InterruptedException e)