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
C++ Programming
Comments: 0

C++ Templates support the concept of - Select option

Options

I. modular programming
II. generic programming
III. structural programming
IV. None of the above

Answer : b) generic programming
Posted By:Birke Fischer      Posted On: Sep 23

C++ Programming
Comments: 0

What is Parallel Edges in dfs (data file structure)?

The edges which are having initial and terminal nodes from same set is called parallel edges.
Posted By:Adalrich Fischer      Posted On: Sep 22

Assembly Language
Comments: 0

What are the features used mode 2 in 8255?

The single 8-bit port in-group A is available.
1. The 8-bit port is bi-directional and additionally a 5-bit control port is available. 2. Three I/O lines are available at port C, viz PC2-PC0. 3. Inputs and outputs are both latched. 4. The 5-bit cont...
Posted By:Adalrico Fischer      Posted On: Sep 21

Assembly Language
Comments: 0

What are Software interrupts?

RST0, RST1, RST2, RST3, RST4, RST5, RST6, RST7.
Posted By:Volney Fischer      Posted On: Sep 21

C++ Programming
Comments: 0

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

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

1. [Check for empty tree]

If T = NULL
then write (“Empty Tree”...
Posted By:Rainart Fischer      Posted On: Sep 20

C++ Programming
Comments: 0

Which the following is true regarding the statement? - const simple m(a,b); - Select option

The following statement creates a constant object of a class simple:

const simple m(a,b);

Which the following is true regarding the above statement?

Options

a) The compiler generates compile-time error if you try to change the values of ‘...
Posted By:Isabel Hughes      Posted On: Sep 19

C++ Programming
Comments: 0

C++ Templates support the concept of - Select option

Options

I. modular programming
II. generic programming
III. structural programming
IV. None of the above

Answer : b) generic programming
Posted By:Birke Fischer      Posted On: Sep 23

C++ Programming
Comments: 0

What is Parallel Edges in dfs (data file structure)?

The edges which are having initial and terminal nodes from same set is called parallel edges.
Posted By:Adalrich Fischer      Posted On: Sep 22

Assembly Language
Comments: 0

What are the features used mode 2 in 8255?

The single 8-bit port in-group A is available.
1. The 8-bit port is bi-directional and additionally a 5-bit control port is available. 2. Three I/O lines are available at port C, viz PC2-PC0. 3. Inputs and outputs are both latched. 4. The 5-bit cont...
Posted By:Adalrico Fischer      Posted On: Sep 21

Assembly Language
Comments: 0

What are Software interrupts?

RST0, RST1, RST2, RST3, RST4, RST5, RST6, RST7.
Posted By:Volney Fischer      Posted On: Sep 21

C++ Programming
Comments: 0

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

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

1. [Check for empty tree]

If T = NULL
then write (“Empty Tree”...
Posted By:Rainart Fischer      Posted On: Sep 20

C++ Programming
Comments: 0

Which the following is true regarding the statement? - const simple m(a,b); - Select option

The following statement creates a constant object of a class simple:

const simple m(a,b);

Which the following is true regarding the above statement?

Options

a) The compiler generates compile-time error if you try to change the values of ‘...
Posted By:Isabel Hughes      Posted On: Sep 19

  101  102  103  104  105  106  107  108  109