根据《商业银行风险监管核心指标》,我国商业银行核心资本充足率必须大于等于()。
A.2%
B.4%
C.6%
D.8%
参考答案:B
阅读下列程序,请写出程序的运行结果。 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)
A.当单刀双掷开关与a连接时,电压表的示数为22V
B.当单刀双掷开关与b连接时,电压表的示数为11V
C.当单刀双掷开关与a连接,滑动变阻器触头P向上移动的过程中,电压表的示数不变,电流表的示数变大
D.单刀掷开关由a扳向b时(滑动变阻器触头P不动),电压表和电流表的示数均变大