網站首頁 工作範例 辦公範例 個人範例 黨團範例 簡歷範例 學生範例 其他範例 專題範例

Delphi各型別筆試題目

欄目: 筆試題目 / 釋出於: / 人氣:2.39W

1. briefly describe what is blanking(cutting), forming, coining and emboss

Delphi各型別筆試題目

ing in stamping process.

2. what is metal clading?

3. what is the purpose of adding glass fiber to thermoplastic material?

4. in contrast with metal and thermoplastic material,which has a higher co

efficient of thermal expansion(cte).

5. the most suitable material for a integral hinge design (typical plastic

thickness=0.25 to 0.5mm at hinge)

6. can a bending load makes both compressive and tensile stress in a member?

7. what is the design criteria used in plastics catch/snap?

8. what is fea?

9. why is natural frequency important in vibration analysis?

10. what is the deflection equation of a cantilever beam fixed at one edge?

ee筆試試題

1. name 3 vehicle buses.

2. name 2 possible sources of electromagnetic interference on electronics

circuit asm.

3. wavelength for 12mhz frequency signal is____

4. name 2 important considerations for car radio performan -ce related to

audio signal processing under multipath condition?

5. what is the typical fm receiver rf signal strength to achieve 30db s/n

for car radio?

6. when a radio is tuned to 98.1 mhz & with a lo of 108.8 mhz, what is the

image frequency?

7. for a system with a matched impedance, what is the reflection coefficie

nt and swr?

8. which property of the output capacitor is the primary cause of low drop

out(ldo) regulator loop instability?

(1)equivalent series resistance(esr)

(2)effective series inductance(esl)

(3)capacitance value

(4)dielectric material

9. the switching regulator is capable of:

(1)higher power conversion efficiency

(2)providing an output voltage that is higher than the input

(3)generating an output boltage oppsite in polarity to the input

(4)all of the above

10. a linear regulator op vin(max) = 10v, vout(min) = 4.8v, iout(max) = 2.

5ma, iq(max) = 2.5ma, ta(max) = 8.5攝氏度,the regulator is available in 3 pac

package has the following thermal characteristics:

package rja(攝氏度/w) rjc(攝氏度/w)

so14 125 30

d1p8 100 52

choose the most suitable package to handle the power dissipation requireme

nt without a heat sink and why.

軟體筆試題

1. how do you code an infinite loop in c?

2. volatile:

(1)what does the keyword volatile mean? give an example

(2)can a parameter be both const and volatile? give an example

(3)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?

(1)const int a;

(2)int const a;

(3)const int *a;

(4)int * const a;

(5)int const * a const;

5. which of the following statements describe the use of the keyword static?

(1)within the body of a function: a static variable maintains its value

between function revocations

(2)within a module: a static variable is accessible by all functions wit

hin that module

(3)within a module: a static function can only be called by other functi

ons within that module

6. embedded systems always require the user to manipulate bits in register

s 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 bo

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

}

9. what will the following c code do?

int *ptr;

ptr =(int *)ox67a9;

*ptr = oxaa55;

10. 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);

}

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

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 frag

ment 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, ma

ny compiler vendors offer an extension to standard c to support interrupts. ty

pically, the keyword is __interrupt. the following routine (isr). point out pr

oblems in the code.

__interrupt double compute_area (double radius)

{

double area = pi * radius * radius;

printf(“narea = %f”, area);

return area;

}