a direct address that identifies a location by means of its displacement from a base address or segment

a) absolute address

b) relative address

c) relative mode

d) absolute mode


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?

2 Answers  


f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?

5 Answers   Geometric Software,


Explain how can I convert a number to a string?

0 Answers  


DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?

2 Answers   Wipro,


How to print %d in output

6 Answers   Wipro,






Example of friendly function in c++

2 Answers  


how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.

3 Answers  


a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6

7 Answers   TCS,


What is the difference between fread and fwrite function?

0 Answers  


What is huge pointer in c?

0 Answers  


Differentiate between the expression “++a” and “a++”?

0 Answers  


I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.

1 Answers  


Categories