这次小编在这里给大家整理了技术支持类部分笔试题英文,本文共6篇,供大家阅读参考。本文原稿由网友“jaret”提供。
篇1:技术支持类部分笔试题英文
1 What are the differences between RAM、ROM and Flash RAM?
2 Please explain the following terms.
RAID 0
RAID 1
RAID 3
RAID 5
RAID 6
3 What’s the difference between DNS and WINS ?
4 For a SATA 160 Gb 10,000rpm disk drive, what is the average amount of time it takes for the data to be read?
5 What is a Race Condition? Please provide an example of a Race Condition.
6 Small Page Size gives you Small Page Table (T/F)
Small Page Size generates more LTB( Translation Lookaside Buffer) (T/F)
Small Page Size causes less Page Faults (T/F)
7 Please compare polling I/O with interrupt-drive I/O .
In what situation would you favour one technique over the other?
8 What is the difference between NAS and SAN storage?
篇2:会计类部分笔试题
会计类部分笔试题
选择题
1:在年度决算前,为了确保年终会计资料真实、正确,需要进行
A.财产的重点抽查
B.财产的全面清查
C.财产的临时清查
D.财产的账面清查
2:我国资产负债表的格式是
A.单步式
B.多步式
C.账户式
D.报告式
3:分解半变动成本的方法当中,相比较而言可以得到较正确结果的是
A.高低点法
B.目测法
C.散布图法
D.回归直线法
4:辅助生产费用采用交互分配法时,其一次交互分配是在( )进行的,
A.各受益单位之间
B.各受益的辅助生产车间之间
C.辅助生产车间以外的受益单位
D.各受益的基本生产车间之间
5:甲注册会计师审计B公司长期借款业务时,为确定“长期借款”账户余额的真实性,可以进行函证。函证的对象应当是
A.B公司的律师
B.金融监管机关
C.银行或其他有关债权人
D.公司的主要股东
6:出租无形资产取得的收益,应在利润表中列入的`项目是
A.其他业务利润
B.主营业务收入
C.投资收益
D.营业外收入
7:下列不属于上市公司披露信息的内容是
A.公司管理办法
B.上市公告书
C.招股说明书
D.年度报告
8:在企业合并清算时,清算财产的计价方法一般采用
A.账面净值法
B.重新估价法
C.清算价格法
D.现值法
9:某项设备原价180000元,预计净残值3000元,预计使用年限,
采用年限平均法计提折旧,则第一年的折旧额为
A.17700元
B.18000元
C.32182元
D.36000元
10:租赁资产的所有者,在经营租赁业务活动中,将让渡租赁资产的
A.注册权
B.使用权
C.所有权
D.特许权
11:银行存款日记账与银行对账单的核对,属于
A.账账核对
B.账实核对
C.账证核对
D.账表核对
12:工业企业发生的废品损失,最终应计入
A.管理费用
B.制造费用
C.基本生产成本
D.辅助生产成本
篇3:部分SQL tuning 类笔试题
部分SQL tuning 类笔试题
应届毕业生求职网整理了部分SQL tuning 类笔试题,供参考:
1:列举几种表连接方式
2:不借助第三方工具,怎样查看sql的执行计划
3:如何使用CBO,CBO与RULE的区别
4:如何定位重要(消耗资源多)的SQL
5:如何跟踪某个session的SQL
6:SQL调整最关注的是什么
7:说说你对索引的.认识(索引的结构、对dml影响、对查询影响、为什么提高查询性能) \"
8:使用索引查询一定能提高查询的性能吗?为什么
9:绑定变量是什么?绑定变量有什么优缺点?
10:如何稳定(固定)执行计划
11:和排序相关的内存在8i和9i分别怎样调整,临时表空间的作用是什么
12:存在表T(a,b,c,d),要根据字段c排序后取第21—30条记录显示,请给出sql.
篇4:软件类英文笔试题
软件类英文笔试题
11. What will be the output of the follow C code?
define product(x) (x*x)
main
{
int i = 3, j, k;
j = product(i );
k = product( i);
printf(%d %d,j,k);
}
12. Simplify the following Boolean expression!((i ==12) || (j 15))
13. How many flip-flop circuits are needed to divide by 16?
14. Provides 3 properties that make an OS, a RTOS?
15. What is pre-emption?
16. Assume the BC register value is 8538H, and the DE register value is 62A5H.Find the value of register BC after the following assembly operations:
MOV A,C
SUB E
MOV C,A
MOV A,B
SBB D
MOV B,A
17.In the Assembly code shown below
LOOP: MVI C,78H
DCR C
JNZ LOOP
HLT
How many times is the DCR C Operation executed?
18.Describe the most efficient way(in term of execution time and code size) to divide a number by 4 in assembly language
19.what value is stored in m in the following assembly language code fragment if n=7?
LDAA #n
LABEL1: CMPA #5
BHI L3
篇5:软件类笔试题英文
软件类笔试题(英文)
德尔福软件方向的笔试题
1.How do you code an infinite loop in C?
2. Volatile:
a) What does the keyword volatile mean? Give an example
b) Can a parameter be both const and volatile? Give an example
c) Can a pointer be volatile? Give an example
3. What are the values of a, b, and c after the following instructions:
int a=5, b=7, c;
c = a b;
4, What do the following declarations mean?
a) const int a;
b) int const a;
c) const int *a;
d) int * const a;
e) int const * a const;
5. Which of the following statements describe the use of the keyword static?
a) Within the body of a function: A static variable maintains its value between function revocations
b) Within a module: A static variable is accessible by all functions within that module
c) Within a module: A static function can only be called by other functions within that module
6. Embedded systems always require the user to manipulate bits in registers or variables. Given an integer variable a, write two code fragments.
The first should set bit 5 of a. The second shnuld clear bit 5 of a. In both cases, the remaining bits should be unmodified.
7. What does the following function return?
char foo(void)
{
unsigned int a = 6;
iht b = -20;
char c;
(a b 6)? (c=1): (c=0);
return c;
}
8. What values are printed when the following C program is executed?
int i = 8;
void main(void)
(
9. What will be the output of the following C code?
main()
{
int k, num= 30;
k =(num 5? (num =10? 100:200): 500);
printf(%d, k);
}
10. What will the following C code do?
int *ptr;
ptr =(int *)Ox67a9;
ptr = Oxaa55;
篇6:英文软件类笔试题
英文软件类笔试题
11. Simplify the following Boolean expression
!((i ==12) || (j >15))
12. How many flip-flop circuits are needed to divide by 16?
13. Provides 3 properties that make an OS, a RTOS?
14. What is pre-emption?
15. Assume the BC register value is 8538H, and the DE register value is 62 A5H.Find the value of register BC after the following assembly operations:
MOV A,C
SUB E
MOV C,A
MOV A,B
SBB D
MOV B,A
16. In the Assembly code shown below
LOOP: MVI C,78H
DCR C
JNZ LOOP
HLT
How many times is the DCR C Operation executed?
17. Describe the most efficient way (in term of execution time and code size) to divide a number by 4 in assembly language
18. what value is stored in m in the following assembly language code fragment if n=7?
LDAA #n
LABEL1: CMPA #5
BHI L3
BEQ L2
DECA
BRA L1
LABEL2: CLRA
LABEL3: STAA #m
19. What is the state of a process if a resource is not available?
#define a 365*24*60*60
20. Using the #define statement, how would you declare a manifest constant that returns the number of seconds in a year? Disregard leap years in your answer.
21. Interrupts are an important part of embedded systems. Consequently, many compiler vendors offer an extension to standard C to support interrupts. Typically, the keyword is __interrupt. The following routine (ISR). Point out problems in the code.
__interrupt double compute_area (double radius)
{
double area = PI * radius * radius;
printf(“\\nArea = %f”, area);
return area;
}
- 单片机系统类笔试题2022-12-11
- 港行英文笔试题2025-05-11
- 农村信用社数字推理类笔试题2025-04-20
- 笔试题2023-01-28
- 硬件类单选和多选笔试题2024-07-23
- 中行管理和市场营销类笔试题2024-08-17
- 智力题笔试题2022-12-11
- 笔试题structure2023-12-07
- OPERA笔试题2023-01-18
- KPMG笔试题2022-12-11