Logo 
Search:

c programming Interview FAQs

Submit Interview FAQ
No Records Found!!!
Go Ahead and Post your Interview FAQ
Home » Interview FAQs » c programmingRSS Feeds
Assembly Language
Comments: 0

How many interrupts are there in 8085?

There are 12 interrupts in 8085.
Posted By:Adela Fischer      Posted On: Jun 30

C++ Programming
Comments: 0

What would be the output of the following code? - Select option

cout.fill(‘$’);
cout.setf(ios::left, ios:: adjustfield);
cout.width(20);
cout<< “I/O Operations”;

Options

a) Operations$$$
b) I/O Operations
c) I/O Operations$$$$$$
d) I/O Operations$$$$$$$

Answer : c) I/O Operations$$$$$$
Posted By:Harrison Evans      Posted On: Jun 29

Assembly Language
Comments: 0

Steps involved to fetch a byte in 8085

i. The PC places the 16-bit memory address on the address bus ii. The control unit sends the control signal RD to enable the memory chip
iii. The byte from the memory location is placed on the data bus
iv. The byte is placed in the instruction de...
Posted By:Abe Fischer      Posted On: Jun 26

C++ Programming
Comments: 0

Which of the following is not a sequence container available in STL?

Options

a) vector
b) deque
c) array
d) list

Answer : c) array
Posted By:Luisa Fischer      Posted On: Jun 25

C++ Programming
Comments: 0

Comments in C++ starts with which symbol

Options

a) //
b) \\
c) **
d) None of the above


Answer : a) //
Posted By:Alex Evans      Posted On: Jun 25

C++ Programming
Comments: 0

What will be the output of the code mentioned below?

8. Consider the following code segment:
void divide(int x, int y)
{
try
{
if(y==0)
throw y;
else
cout< }
catch(int)
{
throw;
cout<
Posted By:Reuben Brown      Posted On: Jun 24

Assembly Language
Comments: 0

How many interrupts are there in 8085?

There are 12 interrupts in 8085.
Posted By:Adela Fischer      Posted On: Jun 30

C++ Programming
Comments: 0

What would be the output of the following code? - Select option

cout.fill(‘$’);
cout.setf(ios::left, ios:: adjustfield);
cout.width(20);
cout<< “I/O Operations”;

Options

a) Operations$$$
b) I/O Operations
c) I/O Operations$$$$$$
d) I/O Operations$$$$$$$

Answer : c) I/O Operations$$$$$$
Posted By:Harrison Evans      Posted On: Jun 29

Assembly Language
Comments: 0

Steps involved to fetch a byte in 8085

i. The PC places the 16-bit memory address on the address bus ii. The control unit sends the control signal RD to enable the memory chip
iii. The byte from the memory location is placed on the data bus
iv. The byte is placed in the instruction de...
Posted By:Abe Fischer      Posted On: Jun 26

C++ Programming
Comments: 0

Which of the following is not a sequence container available in STL?

Options

a) vector
b) deque
c) array
d) list

Answer : c) array
Posted By:Luisa Fischer      Posted On: Jun 25

C++ Programming
Comments: 0

Comments in C++ starts with which symbol

Options

a) //
b) \\
c) **
d) None of the above


Answer : a) //
Posted By:Alex Evans      Posted On: Jun 25

C++ Programming
Comments: 0

What will be the output of the code mentioned below?

8. Consider the following code segment:
void divide(int x, int y)
{
try
{
if(y==0)
throw y;
else
cout< }
catch(int)
{
throw;
cout<
Posted By:Reuben Brown      Posted On: Jun 24

  62  63  64  65  66  67  68  69  70  71  72