中国证监会对取得期货公司经理层人员任职资格但未实际任职的人员实行资格年检。( )
参考答案:对
解析: 参见《期货公司董事、监事和高级管理人员任职资格管理办法》第四十三条第一款规定。
下列各句中,加点的成语使用恰当的一项是( )(3分)
A.山西的煤老板们拥有巨大的财富,其中很多人开着百万豪车,住着千万豪宅,一饭千金,却从不资助任何公益事业。
B.这份报告详实地列举了我国10年来所取得的成果,平铺直叙,毫不夸饰,厚重而大气,客观而准确,读来令人叹服。
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)