皮皮学,免费搜题
登录
搜题
【多选题】
下列企业涉税会计核算处理正确的有( )。
A.
“已交税金”专栏,核算企业当月缴纳当月增值税税额
B.
退回所购货物应冲销的进项税额,用红字登记“进项税额”专栏
C.
企业按规定计算的应代扣代缴的职工个人所得税,借记“应付职工薪酬”科目,贷记“税费一个人所得税”科目
D.
税务师事务所对某企业纳税情况进行指导时发现的增值税涉税账务调整,应通过“税费一增值税检查调整”专门账户
E.
企业当月上缴上月应缴未缴的增值税时,借记“税费—未交增值税”科目,贷记“银行存款”
拍照语音搜题,微信中搜索"皮皮学"使用
参考答案:
参考解析:
知识点:
.
..
皮皮学刷刷变学霸
举一反三
【单选题】以下关于操作系统中回收站的叙述,不正确的是()
A.
回收站是内存中一块空间,关机后即清除
B.
回收站中可以包含被删除的整个文件夹
C.
可以设置直接删除文件而不放入回收站
D.
可以选择回收站中的文件,将其恢复到原来的路径
【单选题】以下关于操作系统中回收站的叙述中,不正确的是( )。
A.
回收站是系统自动建立的一个磁盘文件夹
B.
回收站中的文件不能直接双击打开
C.
用户修改回收站的属性可调整其空间大小
D.
操作系统将自动对回收站中文件进行分析,挖掘出有价值的信息
【简答题】以下程序执行后的输出结果是 class Program { static void Main(string[] args) { int[] a = {12,9,76,-90,23,100,87,32}; for (int i = 2; i < 4; i++) { int t; for (int j=i + 1; j <5; j++) { if (a[i] < a[j]) { t=a[i];...
【简答题】用适当的连词填空(单句语法填空,体验考向) 1. (2015· 北京, 28) You won't find paper cutting difficult long as you keep practicing it. 2. (2015· 北京, 32) the damage is done, it will take many years for the farmland to recover...
【简答题】下面程序的功能是已知两个集合A、B,输出A、B两集合的交集。请在81题答题处完善程序。 例如:A={23,45,21,-9,4,-32,6,58,2},B={3,21,8,-32,23},则交集为{21,-32,23}。 #include void sort(int a[],int n) { int i,j,t; for(i=1;i { t=a[i]; j=i-1; while( 1 ) // 降...
【简答题】Most systems are constructed around a (1), a metal (2) containing a series of slots linked through a (3), to a 16- or 32-bit processor. Memory is added by plugging a (4) board into one of the open slo...
【简答题】//【E5_2.c】判断键盘上输入的字符是否为英文字母、数字字符、字符/和其他字符。 // 1. ASCII码值小于等于32的为cotrol character // 2. 0~9为digit // 3. A~Z为capital letter // 4. a~z为lower letter // 5. 剩余的为oter character #include "stdio.h" void main()...
【简答题】有以下程序 #include void main( ) { int a[4][4]={{1,2,-3,-4},{0,-5,-9,13},{-11,23,0,-24},{-17,32,-23,0}}; int i,j,s=0; for(i=0;i<4;i++) { for(j=0;j<4;j++) { if(a[i][j]<0) continue; if(a[i][j]==0) break...
【判断题】垂直交通通道要求具有通畅、坚固、抗震、防火、通风、采光、美观的特点( )
A.
正确
B.
错误
【单选题】 public class a {  2. public void method1() {  3. try {  4. B b=new b();  5. b.method2();  6. // more code here  7. } catch (TestException te) {  8. throw new RuntimeException(te);  9. }  10. }  11. }...
A.
Line 33 must be called within a try block.
B.
The exception thrown by method1 in class a is not required to be caught.
C.
The method declared on line 31 must be declared to throw a RuntimeException.
D.
On line 5 of class a, the call to method2 of class b does not need to be placed in a try/catch block.
相关题目: