德尔福笔试题目软件类

时间:2021-02-10 15:11:49 面试笔试 我要投稿

德尔福笔试题目(软件类)

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;
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

beq l2

deca

bra l1

label2: clra

label3: staa #m

20. what is the state of a process if a resource is not available?

define a 365*24*60*60
21. 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.

22. 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 followingroutine (isr). point out problems in the code.__interrupt double compute_area (double radius)

{

double area = pi * radius * radius;

printf(" area = %f", area);

return area;

【德尔福笔试题目(软件类)】相关文章:

华为面试代码笔试题目03-11

电厂面试笔试题目02-12

中专面试笔试题目02-12

公司面试笔试题目03-22

护士面试笔试题目03-23

企业面试笔试题目03-17

经济类笔试经验03-18

2017企业笔试题目及答案03-01

财务的面试笔试题目02-12

面试笔试题目及答案03-22