二蛋 爱偷懒

选项(1分):

正确答案:正确答案 更新不易,赞助二蛋3元看答案,最新数据截至2025-09-25!立即操作>>
二蛋已收录了截至2025年09月25日安徽继续教育平台全科题目,题目准确率和覆盖率接近100%,请放心使用。

二蛋爱偷懒 2dan.com.cn

二蛋说:在有限的条件下,二蛋将尽最大努力提供一个纯净无广告,无安装插件,无病毒,并且直观超级简洁的海量学习题目平台,感谢各位用户的支持!
其他题目
[判断题]

DOM由三部分组成,分别是Core DOM、XML DOM和HTML DOM。

正确 、正确。

错误 、错误。

查看答案

[判断题]

制作网页上的浮动广告时,需要定义一个函数实现浮动广告层随滚动条滚动的效果,假如已经定义好了这个名为move的函数,那么最后需要做的是捕获窗口的window.onscroll事件,调用move函数。

正确 、正确。

错误 、错误。

查看答案

[判断题]

JavaScript与客户端的交互是基于事件驱动的。

正确 、正确。

错误 、错误。

查看答案

[多选题]

以下不属于表格对象的方法有:

(选择二项)


A

rows


B

insertRow


C

deleteRow


D

updateRow


查看答案

[多选题]

使用Core HTML删除和替换节点的方法,以下说法正确的是:

(选择二项)


A

removeChild(node) 删除指定的节点


B

replaceChild(newNode,oldNode) 用其它节点替换指定节点


C

createElement()用于创建一个新元素


D

以上说法全正确


查看答案

[多选题]

某页面中有一个id为pdate的文本框,下列(  )能把文本框中的值改为2009-10-12

(选择二项)


A

document.getElementById("pdate").setAttribute("value","2009-10-12");


B

document.getElementById("pdate").value="2009-10-12";


C

document.getElementById("pdate").getAttribute("2009-10-12");


D

document.getElementById("pdate").text="2009-10-12";


查看答案

[多选题]

页面上有一个文本框和一个类change,change可以改变文本框的边框样式,那么使用下面的(    )就可以实现当鼠标指针移到文本框上时,文本框的边框样式发生变化。

(选择二项)


A

onmouseover="className='change'";


B

onmouseover="this.className='change'";


C

onmouseover="this.style.className='change'";


D

onmousemove="this.style.border='solid 1px #ff0000'";


查看答案

[单选题]

要在网页的状态栏中显示已经选中该文本框,下列JavaScript语句正确的是是( )。

(选择一项)


A

window.status="已经选中该文本框";


B

document.status="已经选中该文本框";


C

window.screen="已经选中该文本框";


D

document.screen="已经选中该文本框";


查看答案

[单选题]

JavaScript代码段如下,下面对代码段分析正确的是( )。

<marquee direction="left" onMouseOver="this.stop( );" onMouseOut="this.start( );" loop=100>滚动的文字</marquee>;

则下列选项对代码段描述正确的是( )。

(选择一项)


A

文字循环向右滚动100次,然后停止


B

文字向左无限次循环滚动;鼠标停在文字上时,文字停止滚动,移开时,继续滚动


C

文字循环向左滚动100次,鼠标停在文字上时,文字停止滚动,移开时,继续滚动


D

文字向左来回往复滚动,鼠标停在文字上时,文字停止滚动,移开时,继续滚动


查看答案

[单选题]

当鼠标指针移到页面上的某个图片时,图片出现一个边框,并且图片放大,这是因为激发了下面的(    )事件。

(选择一项)


A

onclick


B

onmousemove


C

onmouseout


D

onmousedown


查看答案

[单选题]

下面()能够动态改变层中的提示内容。

(选择一项)


A

利用层的innerHTML属性改变内容


B

利用层的id属性改变内容


C

使用onblur事件来实现


D

使用display事件来实现


查看答案

[单选题]

某页面中有两个id分别为mobile和telephone的图片,下面(  )能够正确地隐藏id为mobile的图片。

(选择一项)


A

document.getElementsByName("mobile").style.display="none";


B

document.getElementById("mobile").style.display="none";


C

document.getElementsByTagName("mobile").style.display="none";


D

document.getElementsByTagName("img").style.display="none";


查看答案

[单选题]

HTML页面中不能与onChange事件处理程序相关联的表单元素有( )

(选择一项)


A

文本框


B

复选框


C

列表框


D

按钮


查看答案

[单选题]

在页面中有一个id为book的下拉列表框,下列(  )能够动态地在下拉列表框book中添加一个选项,并且显示结果如图所示。

Q-68.png

(选择一项)


A

document.getElementById("book").add(new Option("01","梦想照进现实"),null);


B

document.getElementById("book").add("01","梦想照进现实");


C

document.getElementById("book").add("梦想照进现实","01");


D

document.getElementById("book").add(new Option("梦想照进现实","01"),null);


查看答案

[单选题]

javascript下列选项中可以获取滚动条距窗口顶端滚动的距离的是

选择一项


A

document.documentElement.scrollTop


B

document.documentElement.scroll


C

document.style.scrollTop


D

document.style.scroll


查看答案

[单选题]

在页面中有一个1行2列的表格,其中表格行(tr)的id为r1,下列(  )能在表格中增加一列,并且将这一列显示在最前面。

(选择一项)


A

document.getElementById("r1").Cells(1);


B

document.getElementById("r1").Cells(0);


C

document.getElementById("r1").insertCells(0);


D

document.getElementById("r1").insertCells(1);


查看答案

[单选题]

页面中有一个id为price的层,并且有一个id选择器price用来设置层price的样式,在IE浏览器中运行此页面,下面(    )能正确获取层的背景颜色。

(选择一项)


A

document.getElementById("price").currentStyle.backgroundColor


B

document.getElementById("price").currentStyle.background-color


C

document.getElementById("price").style.backgroundColor


D

var divObj=document.getElementById("price");document.defaultView.getComputedStyle(divObj,null).background;


查看答案

[单选题]

以下不属于select对象常用属性的是

(选择一项)


A

onchange


B

length


C

selectedIndex


D

options


查看答案

[单选题]

某页面中有一个id为main的div,div中有两个图片和一个文本框,下列(  )能够完整地复制节点main及div中所有的内容。

(选择一项)


A

document.getElementById("main").cloneNode(true);


B

document.getElementById("main").cloneNode(false);


C

document.getElementById("main").cloneNode( );


D

main.cloneNode( );


查看答案

[单选题]

关于DOM的三个组成部分,其中不包括:()

(选择一项)


A

Core DOM


B

XML DOM


C

HTML DOM


D

XHTML DOM


查看答案

[单选题]

在页面中有一个10行3列的表格,表格的id为Ptable,下面的选项中只删除最后一行的是( )

(选择一项)


A

document.getElementById("Ptable").deleteRow(10);


B

var delrow=document.getElementById("Ptable").lastChild;delrow.parentNode.removeChild(delrow);


C

var index=document.getElementById("Ptable").rows.length;document.getElementById("Ptable").deleteRow(index);


D

var index=document.getElementById("Ptable").rows.length-1;document.getElementById("Ptable").deleteRow(index);


查看答案

[多选题] 公共政策主要包括四种类型( )

A 党的政策。

B 人大决策。

C 行政决策。

D 司法决策。

查看答案

[多选题] 人力资源规划的内容主要包括( )方面

A 人力资源战略规划。

B 人力资源总体规划。

C 人力资源业务规划。

D 人力资源系统规划。

查看答案

[单选题] 在正常情况下,组织开发的重点是组织的( )。

A 协作能力。

B 创新能力。

C 竞争能力。

D 发展能力。

查看答案

[单选题] ( )是员工工作时间的自然极限,是整个时间资源的总量。

A 全部实际工作时间。

B 制度工作时间。

C 制度内实际工作时间。

D 日历时间。

查看答案

[判断题] n期先付年金现值与n期后付年金现值的付款次数相同,但由于付款时间不同,在计算现值时,n期先付年金比n期后付年金多折现一期。因此,可先求出n期后付年金的现值,再乘以(1+i),便可求出n期先付年金的现值。

正确 、正确。

错误 、错误。

查看答案

[判断题]

进行长期投资决策时,如果某备选方案净现值比较小,那么该方案内含报酬率也相对较低。   ( )

正确 、正确。

错误 、错误。

查看答案

[单选题]

甲公司对外流通的优先股每季度支付股利每股1.2元,年必要报酬率为12%,则该公司优先股的价值是每股()元。

A

20

B

40

C

10

D

60

查看答案

[单选题]

在股票发行的溢价发行方式下,发行公司获得发行价格超过股票面额的溢价款应列入( )。

A

资本公积

B

盈余公积

C

未分配利润

D

营业外收入

查看答案

[多选题] 作为职业守则,遵章守法,格尽职守的意思不属于的是( )。

A 人力资源管理工作,必须在《劳动法》的规范中进行。

B 人力资源管理工作的开展,必须尽力符合国家劳动方面的规定。

C 人力资源管理工作人员,必须尽职尽责,在国家相关的法律法规范围内,有效地开展相关的工作。

D 人力资源管理工作人员的工作,必须服务与企业的发展。

查看答案

[多选题] 在校园招聘中组织笔试时,应当注意解决好( )问题。

A 简单地把笔试成绩作为筛选依据。

B 招聘人员无法胜任笔试工作。

C 笔试内容不确定。

D 笔试题目的难度把握不准。

E 把笔试气氛弄得很紧张。

查看答案

[单选题] 以下关于员工培训规划的说法不正确的是( )。

A 建立在培训需求分析的基础上。

B 需从企业总体发展战略出发。

C 需考虑企业培训资源配置情况。

D 对培训与技能开发起辅助作用。

查看答案

[单选题] 下列关于员工激励的说法,不正确的是( )。

A 任何一种激励方法都不是万能的。

B 对员工的激励不一定达到满意效果。

C 员工对激励作出的反应需要一定时间。

D 对员工的激励一定会产生直接反应。

查看答案

[判断题] 经济危机、通货膨胀、经济衰退以及高利率通常被认为是可分散的市场风险。

正确 、正确。

错误 、错误。

查看答案

[多选题]

公司常用的股利政策类型包括()。

A

剩余股利政策

B

固定股利政策

C

稳定增长股利政策

D

固定股利支付率政策

E

低正常股利加额外股利政策

查看答案

[判断题]

 

服务业的兴起是社会生产力发展的必然结果。


正确 、正确。

错误 、错误。

查看答案

[单选题]

在下列选项中,属于非定额劳动时间的是



A

照管工作地时间

B

休息与生理需要时间

C

准备与结束时间

D

非工人造成的损失时间

查看答案

[单选题]

JIT(准时制生产)的核心理念是什么?


A

存货最大化


B

生产多样化


C

减少库存


D

增加生产时间


查看答案

[多选题]

下列哪些是MIS在供应链管理中的应用?

A

订单处理和库存管理

B

供应商选择和评估

C

物流和运输管理

D

市场调研和分析

查看答案

[单选题]

账务流水信息处理属于()。

A

中层管理

B

高层管理

C

基层管理

D

目标管理

查看答案

[单选题] 管理信息系统概念的正确描述之一是?

A 由计算机、网络等组成的应用系统。

B 由计算机、数据库等组成的信息处理系统。

C 由计算机、人等组成的社会技术系统。

D 由计算机、数学模型等组成的管理决策系统。

查看答案

[单选题]

1. You can go on courses now to help you_______ a fear of flying.


A

overturn 

B

overhear    

C

overcome  

D

overdo

查看答案

[单选题]

Each sentence has an underlined word or phrase, choose one of the words or phrases(a, b, c, d) which best keeps the meaning of the original sentence if it is substituted for the underlined word or phrase.(选择与划线词意义最接近的选项)

4. Over the years the wooden floor in the garden shed has rotted away.


A

rusted 


B

dissolved  


C

melted  


D

disintegrated


查看答案

[单选题]

Each sentence has an underlined word or phrase, choose one of the words or phrases(a, b, c, d) which best keeps the meaning of the original sentence if it is substituted for the underlined word or phrase.(选择与划线词意义最接近的选项)

1. There is a famous legend here about a strange animal that lives in a cave in the mountains.


A

history         


B

book   


C

tradition 


D

old story


查看答案

[单选题]

Each sentence has an underlined word or phrase, choose one of the words or phrases(a, b, c, d) which best keeps the meaning of the original sentence if it is substituted for the underlined word or phrase.(选择与划线词意义最接近的选项)

1. We could see hardly anything, and then a massive lorry loomed out of the thick fog.


A

appeared 


B

rushed


C

 floated 


D

 framed


查看答案

[单选题]

Each sentence has an underlined word or phrase, choose one of the words or phrases(a, b, c, d) which best keeps the meaning of the original sentence if it is substituted for the underlined word or phrase.(选择与划线词意义最接近的选项)

1. We were all horrified when the silence was shattered by the sound of an explosion.


A

interrupted 


B

shot 


C

 encroached 


D

 broken


查看答案

[单选题] 多血质、胆汁质、抑郁质、黏液质四种气质类型,是由古希腊哪个学者提出?

A 恩培多克勒。

B 希波克拉底。

C 盖伦。

D 亚里斯多德。

查看答案

[判断题] 工作群体和工作团队只是名称的不同而已,本质上没有区别

正确 、正确。

错误 、错误。

查看答案

[判断题] 创始人把自己的思维方式和感受方式灌输给员工并使其社会化,这是组织文化形成的途径之一

正确 、正确。

错误 、错误。

查看答案

[多选题] 根据知觉对象的不同,社会知觉包括( )

A 自我知觉。

B 人际知觉。

C 角色知觉。

D 空间知觉。

查看答案

[单选题] 根据赫茨伯格的双因素理论,下列因素中不属于激励因素的是( )

A 工作上的成就感。

B 工作本身具有挑战性。

C 工作职务上的责任感。

D 公司的政策与行政管理。

查看答案

[判断题] 社会知觉是个人归因的基础,也是个人社会行为的基础

正确 、正确。

错误 、错误。

查看答案

[判断题] 领导权变理论认为,在不同的情境中,不同的领导行为有不同的效果

正确 、正确。

错误 、错误。

查看答案

[多选题] “冒险转移”现象产生的原因有( )。

A 个人责任的分散。

B 情绪情感因素。

C 人际关系因素。

D 过分苛求统一。

E 少数人主导决策。

查看答案

[单选题] 在达到同一目的的过程中必然损害或牺牲对方利益的行为意向是( )。

A 竞争。

B 妥协。

C 回避。

D 合作。

查看答案

[单选题] 管理层次与控制幅度的关系是( )。

A 正相关关系。

B 等比关系。

C 反相关关系。

D 互动关系。

查看答案

[单选题]

1. An error in the program prevented me _______  completing my assignment.

 


A

for

B

 from  

C

 in

D

of 

查看答案

[单选题]

1. I had to move my chair because it was in my father’s __________.

   


A

route  

B

 way

C

road

查看答案

[单选题]

1. It was the only book I could find that ___ the problem.


A

concerned with 

B

interested  in

C

dealt with 

D

intrigued by

查看答案

[单选题]

Each sentence has an underlined word or phrase, choose one of the words or phrases(a, b, c, d) which best keeps the meaning of the original sentence if it is substituted for the underlined word or phrase.(选择与划线词意义最接近的选项)

1. From all the different clues, we were able to deduce that the murderer was short fat woman.


A

work out  


B

consider  


C

suggest 


D

calculate


查看答案

[单选题]

Each sentence has an underlined word or phrase, choose one of the words or phrases(a, b, c, d) which best keeps the meaning of the original sentence if it is substituted for the underlined word or phrase.(选择与划线词意义最接近的选项)

1. The contest between the two boxers was always bound to be difficult.


A

argument  


B

game  


C

behaviour  


D

 fight


查看答案

[判断题]

政府常用的宏观经济政策工具有需求管理和供给管理

正确 、正确。

错误 、错误。

查看答案

[判断题] 期望理论认为,人们只要有需求,就会有积极性去努力满足要求

正确 、正确。

错误 、错误。

查看答案

[判断题] 组织氛围(organizational climate)指的是组织成员对于其所在组织和工作环境的普遍认知

正确 、正确。

错误 、错误。

查看答案

[多选题] 费德勒权变模型的关于影响领导者行为的权变因素是( )。

A 职位权力。

B 任务结构。

C 上下级的关系。

D 个性结构。

E 环境结构。

查看答案

[单选题] 处理不重要也不紧急的工作时,效果可能较好的处理冲突的方式是( )。

A 竞争。

B 合作。

C 妥协。

D 回避。

查看答案

[单选题] 领导行为理论中的大多数行为模式体现在两个维度方面,包括工作导向和( )。

A 结构维度。

B 关怀维度。

C 人际导向。

D 目标导向。

查看答案

[单选题] 敏感性训练,使主体更明确地意识到自己的行为以及别人如何看待自己,并使主体对他人的行为更敏感,更理解小组的活动过程,其理想结果将是( )。

A 凸显个人价值。

B 个人和组织更为一体化。

C 个体更为顺从。

D 公私不分。

查看答案

[判断题]

分治法分解出的子问题必须相互独立。

正确 、正确。

错误 、错误。

查看答案

[多选题]

在回溯法的解空间树上不能应用的搜索方法有( )

A

深度优先搜索

B

广度优先搜索

C

最小耗费优先搜索

D

活结点优先搜索

查看答案

[多选题]

解决0/1背包问题可以使用( )

A

动态规划

B

回溯法

C

分支限界法

D

贪心法

查看答案

[多选题]

计算一个算法时间复杂度通常可以计算( )

A

分支个数

B

循环次数

C

原子操作的频率

D

计算步数

查看答案

[多选题]

分治法的基本思想是将一个规模为 n 的问题分解为 k 个规模较小的子问题,这些子问题( )

A

相互独立

B

与原问题形式相同

C

相互关联

D

与原问题形式不同

查看答案

[单选题]

不属于回溯法的基本要素的是( )

A

解空间树

B

约束条件

C

限界函数

D

贪心选择 性质

查看答案

[单选题]

能求解单源最短路径问题的算法是( )

A

分支限界法

B

动态规划

C

线形规划

D

蒙特卡罗算法

查看答案

[单选题]

对于一个具有 n 个顶点的无向图,其邻接矩阵是一个()的矩阵。


A

n×n

B

n×(n - 1)

C

(n - 1)×(n - 1)

D

(n +1)×(n + 1)

查看答案

[单选题]

哪个不是动态规划的特点?

A

具有重叠子问题

B

通过递归求解

C

需要保存子问题的解

D

具有最优子结构

查看答案

[判断题]

替代词one/ones所带的修饰语可以前置,也可以后置。

正确 、正确。

错误 、错误。

查看答案

[判断题]

阅读短文,判断正误

Leonardo da Vinci

If there ever was a renaissance man, it had to be Leonardo da Vinci. He was born in Vinci, Italy. He lived from April 15, 1452 to May 2, 1519.  He was a scientist, mathematician, engineer, inventor, anatomist, painter, sculptor, architect, botanist, musician and writer. He is considered by many to be the most diversely talented person ever to have lived.

Many people are still amazed by Leonardo’s technological ingenuity. He envisioned a helicopter, a tank and a calculator. He also came up with an idea for solar power.

Leonardo also was a remarkable scientist. He greatly advanced the state of knowledge in the fields of anatomy, and civil engineering. Yet, for all his accomplishments as a scientist and inventor, Leonardo’s greatest fame came from his art. One of his paintings, the Mona Lisa, is the most famous and recognized image in the world.


5. Leonardo da Vinci painted the Mona Lisa. 


正确 、正确。

错误 、错误。

查看答案

[判断题]

阅读短文,判断正误

One day, while Ali and his father were walking along a sandy beach, Ali said, “Waves are fun. What makes the waves?” His father said, “ The waves are made by the wind. As the wind blows, it pushes the water ahead of it. The water is able to gain energy from the wind because of the friction between the wind and water. Storms can make giant waves if the wind blows in the same direction for a long time.” “How big are giant waves?” Ali asked. “Giant waves are so big that they could go over our heads, cover us up, and wash us away,” his father replied. “I do not think giant waves are fun. I like gentle waves,” said Ali.


2. The water gains energy from the wind because the wind is strong. 


正确 、正确。

错误 、错误。

查看答案

[单选题]

1. If he had the chance, he would not object ________ in California.

   


A

work 

B

working 

C

to work 

D

to working

查看答案

[单选题]

1. I’ve dried those clothes, but you can’t wear them yet because they’re still a little______.

     


A

damp   

B

watery 

C

wet  

D

 fresh

查看答案

[单选题]

1. The blizzard blew hard________ everything in a short time.

         


A

and covered  

B

cover

C

 to cover  

D

on covering

查看答案

[判断题] 为所设计的数据库建立索引是物理设计阶段的任务之一。

正确 、正确。

错误 、错误。

查看答案

[多选题] 在数据库中,概念模型的相关表述不正确的是?

A 用于现实的建模,与具体的DBMS有关。

B 用于信息世界的建模,与具体的DBMS有关。

C 用于现实的建模,与具体的DBMS无关。

D 用于信息世界的建模,与具体的DBMS无关。

查看答案

[单选题] SQL的全局约束是指基于元组的检查子句和?

A 非空值约束。

B 域约束子句。

C 断言。

D 外键子句。

查看答案

[判断题]

阅读短文,判断正误

Machu Picchu

Machu Picchu is an ancient city. Machu Picchu, which mean “Old Peak,” was built by the Incan Indians around 1460 AD, less than 100 years before the arrival to the Spanish Conquistadors. Machu Picchu is often referred to as “ The Lost City of the Incans.”

The Incan people constructed a green paradise of five square miles between mountains. Machu Picchu was a city that included stone houses, water fountains, baths, parks, and temples. Machu Picchu also had a lot of vegetable gardens. Most of the structures were built of granite rock. Many of the stones weighed over 50 tons each. The stones were carried up the mountainside without the use of the wheel.

The Incas terraced the mountainsides to grow crops and had enough land to grow food. The Incas liked to eat corn, potatoes, beans and fruits. They constructed a water irrigation system that carried water up the mountain from a natural spring to each of the houses.


2. Machu Picchu was built between two mountains. 



正确 、正确。

错误 、错误。

查看答案

[判断题]

阅读短文,判断正误

One day, while Ali and his father were walking along a sandy beach, Ali said, “Waves are fun. What makes the waves?” His father said, “ The waves are made by the wind. As the wind blows, it pushes the water ahead of it. The water is able to gain energy from the wind because of the friction between the wind and water. Storms can make giant waves if the wind blows in the same direction for a long time.” “How big are giant waves?” Ali asked. “Giant waves are so big that they could go over our heads, cover us up, and wash us away,” his father replied. “I do not think giant waves are fun. I like gentle waves,” said Ali.


5. Ali likes giant waves. 


正确 、正确。

错误 、错误。

查看答案

[单选题]

Each sentence below is incomplete. Beneath each sentence you will see four words or phrases(a, b, c, d).  Choose the one word or phrases that best completes the sentence.

1. Although our village is very small, it still _______ three hotels.



A

equips         

B

boasts                  

C

consists

查看答案

[单选题]

1. If you do the job _____ a I do, it’ll be fine.

   


A

in a way  

B

 in the same way    

C

on his way  

D

 in my way

查看答案

[单选题]

1. It will be comparatively easy to get past the guards after John_______ the door.

    


A

 unlocked 

B

 is going the unlock 

C

unlocks  

D

will unlock

查看答案

[单选题]

假定某商品的价格从10美元下降到9美元,需求量从70增加到75,则需求价格弹性为

A

缺乏弹性

B

富有弹性

C

单位弹性

D

难以确定

查看答案

[单选题]

假设某商品的需求曲线为 Q=10-2P,市场上该商品的均衡价格为4,那么,当需求曲线变为Q=12-2P后,均衡价格将

A

大于4

B 小于4

C

等于4

D

小于或等于4

查看答案

[判断题] “情人眼里出西施”是指知觉偏差中的首因效应

正确 、正确。

错误 、错误。

查看答案

[判断题] 性格指的是,个体在现实的稳定态度和习惯化了的行为方式中所表现出来的个性心理特征,是人格的一部分

正确 、正确。

错误 、错误。

查看答案

[多选题] 新技术的影响,表现为要处理更多的信息,带来好处的同时,也带来了( )

A 信息管理。

B 信息超载。

C 信息安全。

D 信息传递。

查看答案

[单选题] 验证偏见是指人们收集到的信息一般会偏重于支持人们已有的观点,这是典型的( )的一个具体例子

A 知觉选择性。

B 知觉理解性。

C 知觉恒常性。

D 知觉整体性。

查看答案

[单选题] 组织文化的三个层次中,最核心的层次是( )。

A 观念层。

B 行为层。

C 制度层。

D 物质层。

查看答案

[单选题] 领导权变理论的代表人物是( )。

A 利克特。

B 费德勒。

C 布莱克和穆顿。

D 坦南鲍姆和施密特。

查看答案

[多选题]

下列资本结构观点中,属于早期的资本结构理论的有()。

A

净收益观点

B

代理理论

C

净营业收益观点

D

传统折中观点

E

信号传递理论

查看答案