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

What is Stack Pointer?

Stack pointer is a special purpose 16-bit register in the Microprocessor, which holds the address of the top of the stack.
Posted By:Harvey Evans      Posted On: Oct 29

C++ Programming
Comments: 0

Recursive algorithm for traversing a binary tree in inorder in dfs (data file structure).

PROCEDURE RINORDER(T)
[Given a binary tree whose root node address is given by the pointer variable T, this algorithm traverses the tree in inorder in a recursive manner].

1. [Check for empty tree]

If T = NULL
then write (“Empty Tree”)
...
Posted By:Adal Fischer      Posted On: Oct 29

C++ Programming
Comments: 0

Which is NOT true about Templates? - Select option

Options

I. They allow you to define generic classes
II. Template type can be substituted by any data-type
III. They eliminate code duplication for different data types
IV. None of the above

Answer : d) None of the above
Posted By:Bethany Hughes      Posted On: Oct 27

Assembly Language
Comments: 0

What is a control flag?

The bits D8 and D9 namely, trap flag (TF) and interrupt flag (IF) bits, are used for controlling machine operation and thus they are called control flags.
Posted By:Jasmine Brown      Posted On: Oct 22

Assembly Language
Comments: 0

Explain the different instruction formats with examples

The instruction set is grouped into the following formats
- One byte instruction -MOV C,A
- Two byte instruction -MVI A,39H
- Three byte instruction -JMP 2345H
Posted By:Lily Brown      Posted On: Oct 21

Assembly Language
Comments: 0

What does Quality factor mean?

The Quality factor is also defined, as Q. So it is a number, which reflects the lossness of a circuit. Higher the Q, the lower are the losses.
Posted By:Viveka Fischer      Posted On: Oct 20

Assembly Language
Comments: 0

What is Stack Pointer?

Stack pointer is a special purpose 16-bit register in the Microprocessor, which holds the address of the top of the stack.
Posted By:Harvey Evans      Posted On: Oct 29

C++ Programming
Comments: 0

Recursive algorithm for traversing a binary tree in inorder in dfs (data file structure).

PROCEDURE RINORDER(T)
[Given a binary tree whose root node address is given by the pointer variable T, this algorithm traverses the tree in inorder in a recursive manner].

1. [Check for empty tree]

If T = NULL
then write (“Empty Tree”)
...
Posted By:Adal Fischer      Posted On: Oct 29

C++ Programming
Comments: 0

Which is NOT true about Templates? - Select option

Options

I. They allow you to define generic classes
II. Template type can be substituted by any data-type
III. They eliminate code duplication for different data types
IV. None of the above

Answer : d) None of the above
Posted By:Bethany Hughes      Posted On: Oct 27

Assembly Language
Comments: 0

What is a control flag?

The bits D8 and D9 namely, trap flag (TF) and interrupt flag (IF) bits, are used for controlling machine operation and thus they are called control flags.
Posted By:Jasmine Brown      Posted On: Oct 22

Assembly Language
Comments: 0

Explain the different instruction formats with examples

The instruction set is grouped into the following formats
- One byte instruction -MOV C,A
- Two byte instruction -MVI A,39H
- Three byte instruction -JMP 2345H
Posted By:Lily Brown      Posted On: Oct 21

Assembly Language
Comments: 0

What does Quality factor mean?

The Quality factor is also defined, as Q. So it is a number, which reflects the lossness of a circuit. Higher the Q, the lower are the losses.
Posted By:Viveka Fischer      Posted On: Oct 20

  25  26  27  28  29  30  31  32  33  34  35