题目内容

老王新任一家国有企业的厂长,到任后不久,现任财务科长周某在未与接替人员办理交接手续情况下,因故离职。老王即任命从财大毕业已工作2年的助理会计师、出纳员小李为财务科长、出纳工作由会计档案保管员陈某兼任。
要求:根据上述资料,分析上述案例中有哪些做法违反了会计法规定,并说明违反了会计法的哪些具体规定。

查看答案
更多问题

— Read the text on the opposite page about running meetings.
— In most of the lines 34 - 45 there is one extra word. It is either grammatically incorrect or does not fit in with the meaning of the text. Some lines, however, are correct.
— If a line is correct, write CORRECT on your Answer Sheet.
— If there is an extra word in the line, write the extra word in CAPITAL LETTERS on your Answer Sheet.
— The exercise begins with two examples, (0) and (00).
MAKE SURE YOUR MEETINGS RUN SMOOTHLY
A well run meeting can achieve much, but a badly run meeting is unlikely
to achieve anything, and indeed may damage on an important project's
34 progress. Meetings should create a sense of the harmony, but they can
35 cause confusion. In normal circumstances, so meetings should be planned
36 well in advance, both in terms of who will attend it and what will be discussed.
37 Overcrowded meetings suggest managers lack their self-confidence and
38 mean there will be too much of discussion on every minor point. The only
39 points that should be discussed are those that require a decision. If you need
40 your staff to update you on something, ask them to send information you
41 can read in your own time. Before a meeting starts, establish for the finishing
42 time, and stick to it. If you let one only meeting run over, then all your meetings
43 will. Make sure the purpose of the meeting is clear there to all concerned, so
44 that everyone stays as focused. Coffee breaks should be regular, and taken
45 away from the table, to maintain energy and concentration at optimum levels.

若要求在图6-16窗口中,用户输入月工资(或薪金收入)后,直接按回车键或向下方向箭就能使焦点(当前光标)跳到应扣除的基本费用的输入文本框,而不用【Tab】键进行切换。请将以下文本框ht_salary的KeyDown(按键)事件过程中空缺的程序代码填写完整。
If KeyCode =13 Or KeyCode = 40 Then
(6)
End If

阅读下列C函数和函数说明,将应填入(n)处的字句写在对应栏内。
【说明】
函数DeleteNode (Bitree *r, int e)的功能是:在树根结点指针为r的二叉查找(排序)树上删除键值为e的结点,若删除成功,则函数返回0,否则函数返回-1。二叉查找树结点的类型定义为:
typedef struct Tnode{
int data; /*结点的键值*/
struct Tnode *Lchild, *Rchild; /*指向左、右子树的指针*/
}*Bitree:
在二叉查找树上删除一个结点时,要考虑3种情况:
①若待删除的结点p是叶子结点,则直接删除该结点;
②若待删除的结点p只有一个子结点,则将这个子结点与待删除结点的父结点直接连接,然后删除结点p;
③若待删除的结点p有两个子结点,则在其左子树上,用中序遍历寻找关键值最大的结点s,用结点s的值代替结点p的值,然后删除结点s,结点s必属于上述①、②情况之一。
【函数】
int DeleteNode (Bitree *r,int e) {
Bitree p=*r,pp,s,c;
while ((1) ){ /*从树根结点出发查找键值为e的结点*/
pp=p;
if(e<p->data) p=p->Lchild;
else p=p->Rchild;
}
if(!P) return-1; /*查找失败*/
if(p->Lchild && p->Rchild) {/*处理情况③*/
s=(2);pp=p
while (3) {pp=s;s=s->Rchild;}
p->data=s->data; p=s;
}
/*处理情况①、②*/
if ((4) ) c=p->Lchild;
else c=p->Rchild;
if(p==*r) *r=c;
else if ((5) ) pp->Lchild=c;
else pp->Rchild=c;
free (p);
return 0;
}

查询选修了C2课的学生号和学生姓名。

答案查题题库