2010年1月真题及答案

2010年1月真题及答案
2010年1月真题及答案

自考乐园,自考学习交流、资料共享的好去处!自考乐园,自考人自己的家园....

俱乐部id:5346389(请牢记它哦~在百度贴吧的搜索框中输入俱乐部id,可以直接进入俱乐部1

全国2010年1月自考Java语言程序设计(一)试题

课程代码:04747

一、单项选择题(本大题共10小题,每小题1分,共10分)

在每小题列出的四个备选项中只有一个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。

1.在下述字符串中,不属于

...Java语言关键字的是( )

A.float B.new

C.java D.return

2.Java语言中数值数据的类型能自动转换,按照从左到右的转换次序为( )

A.byte→int→short→long→float→double

B.byte→short→int→long→float→double

C.byte→short→int→float→long→double

D.short→byte→int→long→float→double

3.在以下供选择的概念中,不属于

...面向对象语言概念的是( )

A.消息B.模块

C.继承D.多态性

4.在下述Java语言语句中,错误

..的创建数组的方法是( )

A.int intArray [ ];intArray=new int[5];

B.int intArray [ ]=new int[5];

C.int [ ] intArray ={1,2,3,4,5};

D.int intArray [5]={1,2,3,4.5};

5.在Swing中,它的子类能用来创建框架窗口的类是( )

A.JWindow B.JFrame

C.JDialog D.JApplet

6.MouseListener接口不能

..处理的鼠标事件是( )

A.按下鼠标左键B.点击鼠标右键

C.鼠标进入D.鼠标移动

7.以下不属于

...文字字型要素的是( )

A.颜色B.字体

C.风格D.字号

自考乐园,自考学习交流、资料共享的好去处!自考乐园,自考人自己的家园....

俱乐部id:5346389(请牢记它哦~在百度贴吧的搜索框中输入俱乐部id,可以直接进入俱乐部2

8.在以下四个供选的整数中,能作为线程最高优先级的整数是( )

A.0 B.1

C.10 D.11

9.Java语言可以用javax.swing包中的类JFileChooser来实现打开和保存文件对话框。用户通过文件对话框不可能

...获得的信息是( )

A.文件名称B.文件路径

C.文件内容D.文件对象

10.在编写访问数据库的Java程序时,Connection对象的作用是( )

A.用来表示与数据库的连接B.存储查询结果

C.在指定的连接中处理SQL语句D.建立新数据库连接

二、填空题(本大题共10小题,每空2分,共20分)

请在每小题的空格中填上正确答案。错填、不填均无分。

11.Java的编译程序先将Java源程序翻译成与机器无关的__________。字节码

12.表达式¨23 & 18’’的值是__________。2318

13.如果类A某个成员变量的类型是类B,则类A和类B之间是__________关系。(P57)Has-a

14.Java语言提供了两个用于处理字符串的类,它们是__________。String\StringBuffer

15.某程序用代码“JTextField text=new J TextField();”创建了一个文本框,并对这个文本框注册了监视器,则在监视器处理方法actionPerformed(ActionEvent e)中,判定是在这个文本框上发生事件的条件表达式是__________。e.getSource()==text

16.一个水平滚动条对象的初始值是50,滑块的宽是10个像素,表示的范围是[0,250]。创建这样的滚动条对象时,提供的5个参数依次是__________。(P125)JScrollBar.HORIZONTAL,50,10,0,250

17.要在JComponent 子类的组件中绘图,应重写__________方法。paintComponet()

18.当线程使用完临界段后,为了使等待的线程恢复工作,需要调用的方法是__________。Notify() 19.某程序想为一个long型整数文件构造随机读写对象,支持这个要求的类是__________。RandomAccessFile

20.设已知服务器的IP地址和端口号,要创建一个套接字对象,支持这个要求的类是__________。Socket 三、简答题(本大题共6小题,每小题3分,共18分)

21.请写出一段if语句,判断一个整数n是否为偶数。如果是偶数,输出“Yes.”;否则,输出“No.”。

If(n%2==0){System.out.println(“Yes”);}els{System.out.println(“No”);}

22.请写出接口定义的一般形式。(P59)

23.请写出Java语言编写事件处理程序的两种主要方案。(P87)

24.设已经有Graphics2D对象g2d, 请用Java语句绘制一个矩形rect,其左上角坐标是(20,30),宽是120,

自考乐园,自考学习交流、资料共享的好去处!自考乐园,自考人自己的家园....

俱乐部id:5346389(请牢记它哦~在百度贴吧的搜索框中输入俱乐部id,可以直接进入俱乐部3

高是30。

Rectangle2D rect=new Rectangle2D.Double(20,30,120,30)

G2d.draw(rect);

25.打开文件对话框时,还可以设置筛选条件,即指定文件的类型。请写出FileFilter类预设的两个方法。accept() getDescription()

26.请写出URLConnection类提供的三个常用方法。

getOutputStream()

getInputStream()

connect()

四、程序填空题(本大题共5小题,每空2分,共20分)

27.方法void moveOddForword(int a[ ])的功能是将数组中的所有奇数移到所有偶数之前。

void moveOddForword(int a[]){

for(int i=0,odd=0;________;i++) i

if(________){ a[i]%2= =0

int t=a[i];a[i]=a[odd];a[odd]=t;odd++;

}

}

28.以下程序创建了一个窗口,然后在窗口内显示″Hello,World!″。

import javax.swing.*;import java.awt*;

public class HelloWorld {

public static void main(String[ ]ares) {

TextFrame frame=new TextFrame();

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

frame. ________;setVisable(true)

}

}

class TextFrame extends JFrame {

public TextFrame() { .

setTitle(″HelloWorld″);

setSize(WIDTH,HEIGHT);

自考乐园,自考学习交流、资料共享的好去处!自考乐园,自考人自己的家园....

俱乐部id:5346389(请牢记它哦~在百度贴吧的搜索框中输入俱乐部id,可以直接进入俱乐部4

TextPanel panel=new TextPanel();

Container contentPane=getContentPane();

contentPane.add(panel);

}

public static final int WIDTH=300;

public static final int HEIGHT= 200;

}

class TextPanel extends JPanel {

public void paintComponent(Graphics g) {

super. ________;paintComponent(g)

g.drawString(″Hello,World! ″,x,y);

}

public int x=100;public int y=100;

}

29.以下是子窗口中设置一个菜单条类的定义。类的构造方法根据指定的窗口名称和菜单表设置菜单条,菜单和菜单项,当选中某个菜单项时,在文本框中显示相应菜单项被选中的信息。

class MenuWindow extends JFrame implements ActionListener {

public static JTextField text;

public MenuWindow(String s,String menuList[][]) {

setTitle(s);

Container con=this.getContentPane();

con.setLayout(new BorderLayout());

this.setLocation(100,100);this.setSize(300,100);

JMenuBar menubar=new JMenuBar();

for(int i=0; i

JMenu menu=new JMenu(menuList[i][0]);

for(int j=1;j

JMenultem anltem=new JMenultem(menuList[i][j]);

anltem.setActionCommand(menuList[i][j]);

anltem.________;menu.add(anltem);ActionListener(this)

}

menubar.__________;add(menu)

自考乐园,自考学习交流、资料共享的好去处!自考乐园,自考人自己的家园....

俱乐部id:5346389(请牢记它哦~在百度贴吧的搜索框中输入俱乐部id,可以直接进入俱乐部5

}

text=new JTextField();setJMenuBar(menubar);

con.add(text,BorderLayout.SOUTH);

}

public void actionPerformed(ActionEvent e){

text.setText(e.getActionCommand()+″菜单项被选中! ″);

}

}

public class Test29 extends Applet {

MenuWindow window;

String menuList[][]={{″体育″,″跑步″,″打蓝球″,″打乒乓″},

{″娱乐″,″唱歌″,″跳舞″}};

public void init() {

window=new MenuWindow(″体育娱乐之窗″,menuList);

window.setVisible(true);

}

}

30.以下是一个用鼠标自由作画的小应用程序。最简单的方法是根据鼠标所在位置画点,跟随鼠标的移动,不断画圆点,就能实现用鼠标作画。

import java.awt.*;

import java.awt.event.*;

public class Test30 extends java.applet.Applet implements MouseMotionListener {

Color color;int lineSize=2:

int x=-1,y=-l;

public void init(){

setLocation(30,20);setSize(300,300);

setBackground(Color.green);addMouseMotionListener(this);

}

public void paint(Graphics g){

if(x!=-1&&y!=-1) {

g.setColor(color);g.fillOval(x,y,1ineSize,lineSize);

}

自考乐园,自考学习交流、资料共享的好去处!自考乐园,自考人自己的家园....

俱乐部id:5346389(请牢记它哦~在百度贴吧的搜索框中输入俱乐部id,可以直接进入俱乐部6

}

public void mouseMoved(MouseEvent e){}

public void mouseDragged(MouseEvent e){

x=e.getX();y=e.getY();_________;repaint()

}

public void ________ (Graphics g){ paint(g);} update();

}

31.以下定义的类ShareData用于管理多个线程共享数据data。一个线程生成data,另一个线程使用data。约定,新生成的data只有被另一个线程使用后,才能生成下一个data。反之,一个data被使用后,也不能再继续使用。所以,生成和使用data的线程之间需要互斥和同步。以下是管理上述使用方式的类,类内有要管理的共享数据,以及对共享数据的存操作putData()和取操作getData()。

class ShareData{

int data;∥共享数据

boolean newData=false;∥有最近新生成data的标志

synchronized int getData(){

while(!newData){

try{ _________;wait()

} catch(InterruptedExceptipn e){

System.out.println(″因错误,而中断!″);

}

}

newData=false;notify();return data;

}

synchronized void putData(int n){

while(newData){

try{wait();

}catch(InterruptedException e){

System.out.println(″因错误,而中断! ″);

}

}

data=n;__________;newData=true

notify();return;

自考乐园,自考学习交流、资料共享的好去处!自考乐园,自考人自己的家园....

俱乐部id:5346389(请牢记它哦~在百度贴吧的搜索框中输入俱乐部id,可以直接进入俱乐部7

}

}

五、程序分析题(本大题共5小题,每小题4分,共20分)

32.阅读下列程序,请写出该程序的输出结果。

class Parent{

private void method 1 () { System.out.println(″Parent′s method 1()″);}

public void method 2 () { System.out.println(″Parent′s method 2()″);method 1();} }

class Child extends Parent {

public void method l (){ System.out.println(″Child′s method 1 ()″);}

public static void main(String args[]){ Parent p = new Child();p.method2();}

}

Parent′s method 2()

Parent′s method 1()

33.阅读下列程序,请写出该程序的功能。

import java.util.*;import javax.swing.*;

public class Test33{

public static void main(String args[]){

String str=(String)JOptionPane.showInputDialog(null,″请输入信息″,

″输入对话框″,JOptionPane.PLAIN_MESSAGE,null,null,null);

StringTokenizer pas=new StringTokenizer(str, ″,″);

int n=pas.countTokens();

System.out.println(″输入的信息有单词:″+n+″个,全部单词如下:″);

while(pas.hasMoreTokens()){

String s=pas.nextToken();

System.out.println(s);

}

}

)

在输入对话框中输入文字,并以多好作为分割符输出单词个数,及各个单词

34.阅读下列程序,请用示意图画出程序运行时呈现的界面。

自考乐园,自考学习交流、资料共享的好去处!自考乐园,自考人自己的家园....

俱乐部id:5346389(请牢记它哦~在百度贴吧的搜索框中输入俱乐部id,可以直接进入俱乐部8

import java.applet.*;import java.awt.*;import javax.swing.*;

class MyPanel extends JPanel{

JTextField textl,text2;

MyPanel(String sl,String s2) {

textl=new JTextFieId(s1);text2=new JTextField(s2);

add(text 1);add(text2);

}

}

class MySubPanel extends MyPanel {

JTextField text;

MySubPanel(String sl,String s2,String s3) {

super(s1,s2);text = new JTextField(s3);add(text);

}

}

public class Test34 {

public static void main(String args[]) {

JFrame mw=new JFrame(″一个示意窗口″);

mw.setSize(350,150);

Container con = mw.getContentPane();

con.setLayout(new BorderLayout());

MyPanel pl=new MyPanel(″文本框l″,″文本框2″);

MySubPanel p2=new MySubPanel(″文本框3″,″文本框4″,″文本框5″);

JTextArea text=new JTextArea(″这里是一个文本区″);

con.add(pl,″North″);con.add(p2,″South″);

con.add(text,″Center″);mw.setVisible(true);

}

}

自考乐园,自考学习交流、资料共享的好去处!自考乐园,自考人自己的家园....

俱乐部id :5346389(请牢记它哦~在百度贴吧的搜索框中输入俱乐部id,可以直接进入俱乐部

9

35.阅读下列程序,请写出该程序的功能。

import java.applet.*:import java.awt.event.*;import javax.swing.*

public class Class 1 extends Applet implements KeyListener{

JButton button=new JButton(″开始″);

JTextArea text=new JTextArea(5,20);

public void init() {

button.addKeyListener(this); add(button);add(text);

}

public void keyPressed(KeyEvent e){

int t=e.getKeyCode();

if(t>=KeyEvent.VK_A&& t<=KeyEvent.VK_Z) {

text.append(″ ″+(char)t);

}

}

public void keyTyped(KeyEvent e){}

public void keyReleased(KeyEvent e){}

}

程序功能:从键盘输入字符如果是大写字母A-Z ,则显示在文本区中

36.阅读下列程序,请写出该程序的功能。

import java.applet.*; import java.awt.*;

public class Test36 extends java.applet.Applet implements Runnable{

Thread myThread = null ;

double seta=0.0;

public void start() {

setSize(500,400);

自考乐园,自考学习交流、资料共享的好去处!自考乐园,自考人自己的家园....

俱乐部id:5346389(请牢记它哦~在百度贴吧的搜索框中输入俱乐部id,可以直接进入俱乐部10

if(myThread=null){ myThread=new Thread(this);myThread.start();}

}

public void run() {

while(myThread!=null) {

try {myThread.sleep(40);

} catch(InterruptedException e){}

seta+=3.0;if(seta>=360)seta=0;repaint();

}

}

public void paint(Graphics g) {

final double pi=3.14159;final double r = 100.0;

int x0=250+(int)(r*Math.cos(3.1415926/180.0*seta));

int y0=200+(int)(r*Math.sin(3.1415926/180.0*seta));

g.setColor(Color.red);g.drawOval(x0,y0,10,10);

}

}

红色、顺时针画圆

六、程序设计题(本大题共2小题,每小题6分,共1 2分)

37.请编写方法void strReverse(String str),该方法的功能是输出一个新字符串,新字符串字符排列顺序与原字符串str的字符排列顺序相反。例如,strReverse(″ABCD″) 所输出的结果是″DCBA″。请使用字

符串与字节数组的相互转换方法进行设计。

public static void strReverse(String str){

byte[] s=str.getBytes();

String t="";

for(int i=s.length-1;i>=0;i--){

t+=(char)s[i];

}

System.out.println(t);

}

38.请设计实现如下用于输入学号和姓名的对话框界面,其中空白格是文本框,用于输入相应的内容。

自考乐园,自考学习交流、资料共享的好去处!自考乐园,自考人自己的家园....

俱乐部id:5346389(请牢记它哦~在百度贴吧的搜索框中输入俱乐部id,可以直接进入俱乐部11

这里给出的是程序的一部分,你要编写的是类InputNoNameDialog的构造方法InputNoNameDialog(JFrame f,String s,JTextField t)。其中参数f是对话框的依赖窗口,s是对话框标题,t是依赖窗口中显示对话框输入内容的文本框。

以下是类InputNoNameDialog的程序框架。

class InputNoNameDialog extends JDialog implements ActionListener{

JLabel title;JTextField textl,text2,mainText;JButton done;

InputNoNameDialog(JFrame f ,String s,JTextField t) {

super(f,s,true);mainText = t;Container con = getContentPane();

title=new JLabel(s);textl=new JTextField(10);

text2=new JTextField(10);con.setLayout(new GridLayout(3,2));

con.setSize(200,100);setModal(false);

//请在以下位置续写其余代码

done=new JButton("确定");

done.addActionListener(this);

con.add(title);con.add(done);

con.add(new JLabel("学号"));con.add(textl);

con.add(new JLabel("姓名"));con.add(text2);

setVisible(true);}

public void actionPerformed(ActionEvent e) {

//输入结束按确定按钮后,将对话框中输入的学号和姓名在它依赖窗口的文本框中显示。

mainText.setText(″学号:″+textl.getText()+″姓名:″+text2.getText());

setVisible(false);dispose();

}

}

2011年临床执业医师第二单元真题附答案

2011年临床执业医师第二单元真题附答案第二单元 1. 十二指肠高选择术—减少复发率 2. 降结肠癌早期表现——习惯与粪便改变 3. 肾癌表现——高血压 4. 溃疡性结肠炎并发——低血钾 5. 颈部急性蜂窝织炎并发症——呼吸困难 6. 克罗恩病不包括——裂隙样 7. 伤寒——白细胞升高 8. 胆囊动脉——肝右动脉 9. 腹部损伤穿刺阳性率——90% 10. 肝性脑病血液化验指标——血氮 11. 老年男性腹外疝——腹股沟直疝 12. 肠易激综合征——便前痛 13. 传染病病原学检查——检测特异病原体

14. 蜘蛛痣常见——上胸部 15. 胰腺炎病因——胆道系统疾病 16. 恶性肿瘤化疗疗效——肾母细胞瘤 17. 肾积水肾功能及梗阻程度检查——逆行肾盂造影 18. 传染病隐形传染——在传染病中少见 19. 汇入门静脉的血流脾血液占——20% 20. T3期多发膀胱肿瘤治疗——经尿道膀胱 21. 家族性息肉首选——肛门镜下显微 22. 肛门截石位肛裂好发——6点 23. 钩端螺旋体病原——青霉素 24. 创伤后人体代谢变化——蛋白少/糖增加/脂增加 25. 病因不明的急性腹膜炎手术切口——左肋下 26. 原发肝癌常见淋巴转移——肝门 27. 乳腺癌局部表现预后差——皮肤呈桔皮样 28. 细菌肝脓肿致病菌常侵入——门静脉

29. 胃食管反流患者定期——BARRETT食管 30. 外科治疗肝硬化门脉高压重点——治疗和预防出血 31. 腹部闭合伤导致腹膜炎最晚的——回肠 32. 急性阑尾炎/阑尾尖端指向——腹肌紧张度增加 33. 急性胰腺炎血清淀粉酶——48小时 34. 肾盂结石静脉造影显示右肾积水功能正常首选——药物治疗 35. 判断疝是否绞窄依据——疝内容物是否有血循环 36. 需要治疗的无症状菌尿——糖尿病 37. 肥皂刷手需将上肢——10cm 38. 男性充盈尿失禁——前列腺增生 39. 引起急性尿潴留病因——良性前列腺增生 40. 红斑狼疮最有价值抗体——抗核抗体 41. 慢性肾脏病继发甲旁抗——高磷血症 42. 确诊反流性食管炎——食管酸检测异常 43. 胆碱酯酶复活剂——与阿托品

2011年英语专业八级真题完整答案及详细解析word版

TEST FOR ENGLISH MAJORS (2011) GRADE EIGHT TIME LIMIT: 195 MIN PART I LISTENING COMPREHENSION SECTION A MINI-LECTURE In this section you will hear a mini-lecture. You will hear the lecture ONCE ONL Y. While listening, take notes on the important points. Your notes will not be marked, but you will need them to complete a gap-filling task after the mini-lecture. When the lecture is over, you will be given two minutes to check your notes, and another ten minutes to complete the gap-filling task on ANSWER SHEET ONE. Some of the gaps may require a maximum of THREE words. Make sure the word(s) you fill in is (are) both grammatically and semantically acceptable. You may refer to your notes while completing the task. Use the blank sheet for note-taking. Now, listen to the mini-lecture. Classifications of Cultures According to Edward Hall, different cultures result in different ideas about the world. Hall is an anthropologist. He is interested in relations between cultures. I. High-context culture A. feature - context: more important than the message - meaning: (1)__________ i.e. more attention paid to (2) ___________ than to the message itself B. examples - personal space - preference for (3)__________ - less respect for privacy / personal space - attention to (4)___________ - concept of time - belief in (5)____________ interpretation of time - no concern for punctuality - no control over time II. Low-context culture A. feature - message: separate from context - meaning: (6)___________ B. examples - personal space - desire / respect for individuality / privacy - less attention to body language

2010年1月管综逻辑真题及答案解析

2010年1月MBA联考逻辑真题 三、逻辑推理(本大题共30 小题,每小题2 分,共60 分。在下列每题给出的五个选项中,只有一项是符合试题要求的。请在答题卡...上将所选的字母涂黑。) 26.针对威胁人类健康的甲型H1N1流感,研究人员研制出了相应的疫苗,尽管这些疫苗是有效的,但某大学研究人员发现,阿司匹林、痉苯基乙酰胺等抑制某些酶的药物会影响疫苗的效果,这位研究人员指出:“如果你使用了阿司匹林或者对乙酰氢基酚,那么你注射疫苗后就必然不会产生良好的抗体反映。” 如果小张注射疫苗后产生了良好的抗体反映,那么根据上述研究结果可以得出以下哪项结论? A.小张服用了阿司匹林,但没有服用对乙酰氢基酚 B.小张没有服用阿司匹林,但感染了H1N1流感病毒 C.小张服用了阿司匹林,但没有感染H1N1流感病毒 D.小张没有服用阿司匹林,也没有服用对乙酰氨基酚 E.小张服用了对乙酰氨基酚,但没有服用痉苯基乙酰胺 【答案】D 【简析】试题类型:逻辑推断-命题推理 (阿司匹林∨对乙酰氢基酚)→?良好抗体反映 良好抗体反映 ―――――――――――――――――――――― 所以,?阿司匹林∧?对乙酰氢基酚 27. 为了调查当前人们的识字水平,其实验者列举了20个词语,请30位文化人士识读,这些人的文化程度都在大专以上。识读结果显示,多数人只读对3~5个词语,极少数人读对15个以上,甚至有人全部读错。其中,“蹒跚”的辨识率最高,30人中有19人读对;“呱呱坠地”所有人都读错。20个词语的整体误读率接近80%。该实验者由此得出,当前人们的识字水平没有提高,甚至有所下降。 以下哪项如果为真,最能对该实验者的结论构成质疑() A.实验者选取的20个词语不具有代表性。 B.实验者选取的30位识读者均没有博士学位。 C.实验者选取的20个词语在网络流行语言中不常用。 D.“呱呱坠地”这个词的读音有些大学老师也经常读错。 E.实验者选取的30位识读者中约有50%入学成绩不佳。 【答案】A 【简析】试题类型:谬误辨析-样本不当。本题考查的知识点是简单枚举归纳推理中的统计归纳法。简单枚举归纳推理要求前提中列举的事例对于所推出的结论来说必须具有代表性,不能出现特殊样本,否则就会犯“以偏概全”或“偏向样本”的错误。题干中得出结论的依据是“20个词语”,但如果它们并不是常用字,就失去了代表性,结论的得出就失去了依据。E项的力度远不如A项。 28. 域控制器存储了域内的账户,密码和属于这个域的计算机三项信息。当计算机接入网络时,域控制器首先要鉴别这台计算机是否属于这个域,用户使用的登录账户是否存在,密码是否正确。如果三项信息均正确,则允许登陆;如果以上信息有一项不正确,那么域控制器就会拒绝这个用户从这台计算机登陆。小张的登录账号是正确的,但是域控制器拒绝小张的计算机登陆。

2011年1月全国自考《财务报表分析(一)》试题及答案

2011年1月全国高等教育自学考试 《财务报表分析(一)》试题及答案 课程代码:00161 一、单项选择题(本大题共20小题,每小题1分,共20分) 在每小题列出的四个备选项中只有一个选项是符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。 1.信息供给差异的主要来源是( ) A.强制性披露信息 B.自愿性披露信息 C.表内披露信息 D.表外披露信息 答案:B 见教材P9 2.目标标准一般可用于( ) A.外部分析 B.内部分析 C.行业分析 D.趋势分析 答案:B 见教材P7 3.资产负债表质量分析是对( ) A.财务状况质量分析 B.财务成果质量分析 C.现金流量运转质量分析 D.产品质量分析 答案:A 见教材P29 4.反映利润质量较高的事项是( ) A.利润的含金量较低 B.利润没有较多的现金支撑 C.利润来源于未来持续性较强的业务 D.利润来源于未来具有可预测性的业务 答案:C 见教材P75 5.下列关于每股收益指标的说法,正确的是( ) A.每股收益对每个企业来说都是分析盈利能力的重要指标 B.每股收益既反映盈利能力也反映风险 全国2011年1月自学考试财务报表分析(一)试题 1

C.每股收益的下降反映企业盈利能力的降低 D.不同行业的每股收益具有一定的差异,每股收益的分析应在行业内进行 答案:D 每股收益是对上市公司盈利能力分析的重要指标,非上市公司可能不适用,故A 不正确;每股收益不反映风险,B不正确;由于企业派发股票股利、拆股等会增加普通股的数量,减少每股收益,但由于所有者权益总额并未发生变化,并不意味着企业的盈利能力下降,故C不正确。见教材P219-220 6.影响应收账款坏账风险加大的因素是( ) A.账龄较短 B.客户群分散 C.信用标准严格 D.信用期限较长 答案:D 7.如果流动比率大于1,则下列结论成立的是( ) A.速动比率大于1 B.现金比率大于1 C.营运资金大于零 D.短期偿债能力有保障 答案:C 流动比率大于1,意味着流动资产大于流动负债,营运资金=流动资产-流动负债,故选C 8.下列各项中,不影响 ...应收账款周转率指标使用价值的因素是( ) A.销售折让与折扣的波动 B.季节性经营引起的销售额波动 C.大量使用分期收款结算方式 D.大量使用现金结算的销售 答案:D大量使用现金结算的销售不涉及到应收账款 9.能够反映企业利息偿付安全性的最佳指标是( ) A.利息保障倍数 B.流动比率 C.净利息率 D.现金流量利息保障倍数 答案D 10.某公司每股净资产为2,市净率为4,每股收益为0.5,则市盈率等于( ) A.20 B.16 C.8 D.4 答案:B 市净率=每股市价/每股净资产=4,而每股净资产=2,每股市价=4×2=8 ,市盈率=每股市价/每股收益=8/0.5=16 11.下列各项中,与企业盈利能力分析无关 ..的指标是( ) A.总资产收益率 B.股利增长率 全国2011年1月自学考试财务报表分析(一)试题 2

英语二2011年真题及答案

2011年全国硕士研究生入学统一考试英语(二)试题 Section I Use of English Directions: Read the following text. Choose the best word(s) for each numbered blank and mark A, B, C or D on ANSWER SHEET 1. (10 points) The Internet affords anonymity to its users, a blessing to privacy and freedom of speech. But that very anonymity is also behind the exploration of cyber-crime that has __1__ across the Web. Can privacy be preserved __2__ bringing safety and security to a world that seems increasingly __3__ ? Last month, Howard Schmidt, the nation's cyber-czar, offered the federal government a __4__ to make the web a safer place-a "voluntary trusted identity" system that would be the high-tech __5__ of a physical key, a fingerprint and a photo ID card, all rolled __6__ one. The system might use a smart identity card, or a digital credential __7__ to a specific computer, and would authenticate users at a range of online services. The idea is to __8__ a federation of private online identity systems. Users could __9__ which system to join, and only registered users whose identities have been authenticated could navigate those systems. The approach contrasts with one that would require an Internet driver's license __10__ by the government. Google and Microsoft are among companies that already have these "single sign-an" systems that make it possible for users to __11__ just once but use many different services. __12__ , the approach would create a "walled garden" in cyberspace, with safe "neighborhoods" and bright " streetlights" to establish a sense of a __13__ community. Mr. Schmidt described it as a "voluntary ecosystem" in which "individuals and organizations can complete online transactions with __14__ , trusting the identities of each other and the identities of the infrastructure ___15___ which the transaction runs. " Still, the administration's plan has ___16___ privacy rights activists. Some applaud the approach; others are concerned. It seems clear that such a scheme is an initiative push toward what would ___17___ be a compulsory Internet "driver's license" mentality. The plan has also been greeted with ___18__ by some computer security experts, who worry that the "voluntary ecosystem" envisioned by Mr. Schmidt would still leave much of the Internet __19__ They argue that all Internet users should be __20__ to register and identify themselves, in the same way that drivers must be licensed to drive on public roads. 1. [A] swept [B] skipped [C] walked [D] ridden 2. [A] for [B] within [C] while [D] though 3. [A] careless [B] lawless [C] pointless [D] helpless 4. [A] reason [B] reminder [C] compromise [D] proposal 5. [A] information [B] interference [C] entertainment [D] equivalent 6. [A] by [B] into [C] from [D] over 7. [A] linked [B] directed [C] chained [D] compared 8. [A] dismiss [B] discover [C] create [D] improve

2011年英语专业四级真题及答案

“Congratulations, Mr. Cooper. It?s a girl.” Fatherhood is going to have a different meaning and (31) a different response from every man who hears these words. Some feel (32) when they receive the news, (33) others worry, wondering whether they will be good father. (34) there are some men who like children and may have had (35) experience with them, others do not particularly (36) children and spend little time with them. Many fathers and mothers have been planning and looking forward to children for some time. (37) other couples, pregnancy was an accident that both husband and wife have (38) willingly or unwillingly. Whatever the (39) to the birth of a child, it is obvious the shift from the role of husband to (40) of a father is a difficult task. (41) , unfortunately, few attempts have been made to (42) fathers in this resocialization (43) . Although numerous books have been written about mothers, (44) recently has literature focused on the (45) of a father. It is argued that the transition to the father's role, although difficult, is not (46) as great as the transition the wife must (47) to the mother's role. The mother's role seems to require a complete (48) in daily routine. (49) , the father?s role is less demanding and (50) . 31. A. bring down B. bring forth C. bring off D. bring in 32. A. emotional B. sentimental C. bewildered D. proud 33. A. while B. when C. if D. as 34. A. When B. If C. Although D. Yet 35. A. considerate B. considerable C. considering D. considered 36. A. care about B. care of C. care with D. care for 37. A. For B. Of C. From D. Upon 38. A. received B. taken C. accepted D. obtained 39. A. reply B. reaction C. readiness D. reality 40. A. what B. this C. one D. that 41. A. As a result B. For example C. Yet D. Also 42. A. educate B. cultivate C. inform D. convert 43. A. step B. process C. point D. time 44. A. / B. just C. quite D. only 45. A. role B. work C. career D. position 46. A. a little B. just C. nearly D. almost 47. A. take B. make C. carry D. accept 48. A. transformation B. realization C. socialization D. reception 49. A. In addition B. Above all C. Generally D. However 50. A. current B. immediate C. present D. quick TEXT A We have a crisis on our hands. You mean global warning? The world economy? No, the decline of reading. People are just not doing it anymore, especially the young. Who?s responsible? Actually, it?s more like, What is responsible? The Internet, of course, and everything that comes with it —Facebook, Twitter (微博). You can write your own list. There?s been a warning about the imminent death of literate civilization for a long time. In the 20th century, first it was the movies, then radio, then television that seemed to spell doom for the written world. None did. Reading survived; in fact it not only survived, it has flourished. The world is more literate than ever before —there are more and more readers, and more and more books. The fact that we often get our reading material online today is not something we should worry over. The electronic and digital revolution of the last two decades has arguably shown the way forward for reading and for writing. Take the arrival of e-book readers as an example. Devices like Kindle make reading more convenient and are a lot more environmentally friendly than the traditional paper book.

2010年1月MBA联考逻辑真题及答案解析

2010年1月MBA联考逻辑真题及答案解析 26.针对威胁人类健康的甲型H1N1流感,研究人员研制出了相应的疫苗,尽管这些疫苗是有效的,但某大学研究人员发现,阿司匹林、痉苯基乙酰胺等抑制某些酶的药物会影响疫苗的效果,这位研究人员指出:“如果你使用了阿司匹林或者对乙酰氢基酚,那么你注射疫苗后就必然不会产生良好的抗体反映。” 如果小张注射疫苗后产生了良好的抗体反映,那么根据上述研究结果可以得出以下哪项结论? A.小张服用了阿司匹林,但没有服用对乙酰氢基酚 B.小张没有服用阿司匹林,但感染了H1N1流感病毒 C.小张服用了阿司匹林,但没有感染H1N1流感病毒 D.小张没有服用阿司匹林,也没有服用对乙酰氨基酚 E.小张服用了对乙酰氨基酚,但没有服用痉苯基乙酰胺 27. 为了调查当前人们的识字水平,其实验者列举了20个词语,请30位文化人士识读,这些人的文化程度都在大专以上。识读结果显示,多数人只读对3到5个词语,极少数人读对15个以上,甚至有人全部读错。其中,“蹒跚”的辨识率最高,30人中有19人读对;“呱呱坠地”所有人偶读错。20个词语的整体误读率接近80%。该实验者由此得出,当前人们的识字水平并没有提高,甚至有所下降。 以下哪项如果为真,最能对该实验者的结论构成质疑? A.实验者选取的20个词语不具有代表性 B.实验者选取的30位识读者均没有博士学位 C.实验者选取的20个词语在网络流行语言中不常用 D.“呱呱坠地”这个词的读音有些大学老师也经常读错 E.实验者选取的30位识读者中约有50%大学成绩不佳 28. 域控制器存储了域内的账户,密码和属于这个域的计算机三项信息。当计算机接入网络时,域控制器首先要鉴别这台计算机是否属于这个域,用户使用的登录账户是否存在,密码是否正确。如果三项信息均正确,则允许登陆:如果以上信息有一项不正确,那么域控制器就会拒绝这个用户从这台计算机登陆。小张的登录账号是正确的,但是域控制器拒绝小张的计算机登陆。 基于以上陈述能得出以下哪项结论? A.小张输入的密码是错误的 B.小张的计算机不属于这个域 C.如果小张的计算机属于这个域,那么他输入的密码是错误的 D.只有小张输入的密码是正确的,它的计算机才属于这个域 E.如果小张输入的密码是正确的,那么它的计算机属于这个域 29. 现在越来越多的人拥有了自己的轿车,但他么明显地缺乏汽车保养的基本知识,这些人会按照维修保养手册或4S店售后服务人员的提示做定期保养。可是,某位有经验的司机会告诉你,每行驶5千公里做一次定期检查,只能检查出汽车可能存在问题的一小部分,这样的检查是没有意义的,是浪费时间和金钱。 以下哪项不能削弱该司机的结论? A. 每行驶5千公里做一次定期检查是保障车主安全所需要的 B. 每行驶5千公里做一次定期检查能发现引擎的某些主要故障 C. 在定期检查中所做的常规维护时保证汽车正常运行所必须的 D. 赵先生的新车未作定期检查行驶到5100公里时出了问题 E. 某公司新购的一批汽车未作定期检查,均安全行驶了7000公里以上。 30. 化学课上,张老师演示了两个同时进行的教学实验:一个实验室KCIO3,有O2缓慢产生,另一个实验室KCIO3,加热后迅速撒入少量MnO2,这时立即有大量的O2产生 。张老师由此指出:MnO2是O2快速产生的原因 以下哪项与张老师得出结论的方法类似? A.同一品牌的化妆品价格越高卖的的越火。由此可见,消费者喜欢价格高的化妆品 B.居里夫人在沥青矿物中提取放射性元素时发现,从一定量的沥青矿物中提取的全部纯铀的放射性强度比同等数量的沥青矿物中放射线迁都低数倍。她据此推断,沥青矿物中还存在其它放射线更强的元素。 C.统计分析发现,30岁至60岁之间,年纪越大胆子越小,有理由相信:岁月是勇敢的腐蚀剂 D.将闹钟放在玻璃罩里,使它打铃,可以听到铃声;然后把玻璃罩里的空气抽空,再使闹钟打铃,就听不到铃声了。由此可见,空气是声音传播的介质 E.人们通过对绿藻、蓝藻、红藻的大量观察,发现结构简单,无根叶是藻类植物的主要特征 31. 湖队是不可能进入决赛的。如果湖队进入决赛,那么太阳就从西边出来了。

全国自考2011年1月03708中国近代史纲要真题及答案

2011年1月高等教育自学考试全国统一命题考试 中国近现代史纲要试题 课程代码:03708 一、单项选择题(本大题共30小题,每小题1分,共30分) 在每小题列出的四个备选项中只有一个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。 1.太平天国由盛而衰的转折点是( D ) A.永安建制 B.长沙战役 C.北伐失利 D.天京事变 2.1861年,清政府设立的综理洋务的机关是( A ) A.总理各国事务衙门 B.江南制造总局 C.外务部 D.轮船招商局 3.1898年,张之洞发表的对抗维新变法的著作是( D ) A.《新学伪经考》 B.《孔子改制考》 C.《仁学》 D.《劝学篇》 4.1915年9月在上海创办《青年》杂志的是( B ) A.李大钊 B.陈独秀 C.胡适 D.鲁迅 5.中国近代史上第一次彻底反帝反封建的革命运动是( B ) A.辛亥革命 B.五四运动 C.五卅运动 D.国民革命 6.以第一次国共合作为基础的国民革命统一战线正式形成的标志是( C ) A.中共二大的召开 B.中共三大的召开 C.中国国民党一大的召开 D.中国国民党二大的召开 7.1925年至1926年间,中国工人坚持16个月之久的罢工斗争是( D ) A.香港海员罢工 B.安源路矿工人罢工 C.京汉铁路工人罢工 D.省港罢工 8.1928年10月,国民党中央常务委员会通过了( D ) A.《中华民国临时约法》 B.《中华民国约法》 C.《军政纲领》 D.《训政纲领》 9.1928年12月,在东北宣布“服从国民政府,改易旗帜”的是( A ) A.张学良 B.张作霖 C.冯国璋 D.冯玉祥 10.1930年8月,邓演达领导成立的中间党派是( A ) A.中国国民党临时行动委员会 B.中国青年党 C.中国国家社会党 D.中国国民党革命委员会 11.1931年11月,中国共产党在江西瑞金召开的重要会议是( C ) A.中共六届四中全会 B.红四军第九次党的代表大会 C.中华苏维埃第一次全国代表大会 D.赣南会议 12.1934年中国工农红军第五次反“围剿”斗争失败后,率先开始战略转移的是 ( B )

2011年6月应用能力B级真题(附答案)

2011年6月B级考试全真试题 Part II Vocabulary & Structure (15 minutes) Directions: This part is to test your ability to use words and phrases correctly to construct meaningful and grammatically correct sentences. It consists of 2 sections. Section A Directions: There are 10 incomplete statements here. You are required to complete each statement by choosing the appropriate answer from the 4 choices marked A, B, C and D. You should mark the corresponding letter on the Answer Sheet with a single line through the center. 16. To ______ the truth, I really didn't know anything about yesterday's meeting. A. do B. tell C. put D. take 17. Your sales methods will depend ______ the customers with whom you deal. A. with B. on C. in D. for 18. We support the view that poor management will ______ business failure. A. break up B. take in C. lead to D. put off' 19. In recent years, there have been over 30 foreign companies ______ business in this city. A. doing B. do C. to do D. done 20. It is easy to get the software we need ______ the market is small. A. as if B. so that C. although D. until 21. By the end of this year, they ______ a new program in Europe. A. had started B. start C. are starting D. will have started 22. Language learning is a slow process, which ______ a lot of effort, time and patience. A. requires B. leaves C. pays D. offers 23. More than 100 people died ______ the earthquake in that area. A. in ease of B. as a result of C. in addition to D. on the basis of 24. Mike has already put forward his suggestion ______ a production plan should be completed next week. A. whom B. what C. which D. that 25. I am writing to apply for the ______ of Sales Manager advertised in last Friday's China Daily. A. business B. trade C. position D. operation Section B Directions: There are also 10 incomplete statements here. You should fill in each blank with the proper form of the word given in brackets. Write the word or words in the corresponding space on the Answer Sheet. 26. (general) ______ speaking, table manners vary from culture to culture. 27. The wallpaper pattern (design) ______ by a famous Chinese artist several years ago. 28. The program aims to let all the employees (understand) ______ the culture of the company. 29. The organization will start a (move) ______ to protect the environment next month. 30. They have already discussed the report (give) ______ by the department manager. 31. We will set up a factory in that country, which is rich in (nature) ______ resources. 32. Peter actually does a good job in keeping the store clean, which is not as (simple) ______ as it seems to be. 33. I really enjoy (work) ______ together with you, and thank you for your cooperation. 34. My first (impress) ______ of England was that it was a grey and rainy place.

全国自考2010年1月03708中国近代史纲要真题及答案

2010年1月高等教育自学考试全国统一命题考试 中国近现代史纲要试题 课程代码:03708 一、单项选择题(本大题共30小题,每小题1分,共30分) 在每小题列出的四个备选项中只有一个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。 1.中国开始进入半殖民地半封建社会是在( A ) A.第一次鸦片战争后 B.第二次鸦片战争后 C.中日甲午战争后 D.八国联军侵华战争后 2.1895年,日本迫使清朝政府签订的不平等条约是( C ) A.《南京条约》 B.《天津条约》 C.《马关条约》 D.《辛丑条约》 3.中国半殖民地半封建社会最主要的矛盾是( D ) A.地主阶级与农民阶级的矛盾 B.资产阶级与工人阶级的矛盾 C.封建主义与人民大众的矛盾 D.帝国主义与中华民族的矛盾 4.1843年,魏源在《海国图志》中提出的思想主张是( B ) A.中学为体,西学为用 B.师夷长技以制夷 C.物竞天择,适者生存 D.维新变法以救亡图存 5.辛亥革命时期,资产阶级革命派的阶级基础是( C ) A.买办资产阶级 B.官僚资产阶级 C.民族资产阶级 D.城市小资产阶级 6.中国资产阶级领导的民主革命进入到一个新阶段的标志是( D ) A.兴中会的成立 B.华兴会的成立 C.光复会的成立 D.中国同盟会的成立 7.1911年4月,资产阶级革命派发动的武装起义是( C ) A.惠州起义 B.河口起义 C.广州起义 D.武昌起义 8.中国历史上第一部具有资产阶级共和国宪法性质的法典是( A ) A.《中华民国临时约法》 B.《中华民国约法》 C.《钦定宪法大纲》 D.《中华民国宪法》 9.在俄国十月革命影响下,中国率先举起马克思主义旗帜的是( B ) A.陈独秀 B.李大钊 C.陈望道 D.毛泽东 10.标志中国新民主主义革命开端的运动是( B ) A.新文化运动 B.五四运动 C.保路运动 D.五卅运动 11.1922年,中共二大第一次明确提出了( D ) A.实现共产主义的最高纲领 B.新民主主义革命的总路线 C.土地革命的总路线 D.反帝反封建的民主革命纲领 12.1923年2月,中国共产党领导发动的工人运动是( C ) A.香港海员罢工 B.安源路矿工人罢工 C.京汉铁路工人罢工 D.省港工人罢工 13.1930年成立的中国国民党临时行动委员会的主要领导人是( A )

2011年—2012年1月自考国贸真题及答案解析

全国2012年1月高等教育自学考试 国际贸易理论与实务试题 课程代码:00149 一、单项选择题(本大题共25小题,每小题1分,共25分) 在每小题列出的四个备选项中只有一个是最符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。 1.一国有丰裕的资本,故它应专门生产并出口资本密集型产品,持这种观点的理论是( ) A.要素禀赋说B.比较成本说 C.绝对成本说D.产品生命周期说 2.国际分工产生和发展的基础是( ) A.上层建筑B.资本流动 C.自然条件D.社会生产力 3.一定时期内,当一国的进口总额大于出口总额时称为( ) A.贸易顺差B.贸易平衡 C.贸易出超D.贸易入超 4.在商品价格下跌的情况下,加强了关税的保护作用的关税征收方式是( ) A.从量税B.从价税 C.混合税D.差价税 5.我国海关从1992年起采用的国际贸易商品分类体系是( ) A.《协调制度》B.《海关合作理事会税则目录》 C.《国际贸易标准分类》D.《海关税则目案》 6.在下列的进口许可证制度中,最具灵活性和隐蔽性的是( ) A.公开一般许可证B.特种进口许可证 C.有定额的进口许可证D.无定额的进口许可证 7.出口国政府减免出口商品的直接税的做法属于( ) A.出口直接补贴B.出口间接补贴 C.出口信贷D.出口行业产业政策 8.世界贸易组织实行的最惠国待遇是( ) A.有条件的最惠国待遇B.无条件的最惠国待遇 C.“美洲式”最惠国待遇D.“亚洲式”最惠国待遇 9.根据关税同盟理论,下列属于关税同盟的静态效应的是( ) A.贸易转移效应B.促进技术进步 C.加速经济成长D.刺激投资

相关文档
最新文档