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

Which header file in C++ does contain function prototypes for memory allocation?

Options

a)
b)
c)
d)

Answer : c)
Posted By:Alfie Evans      Posted On: Nov 23

Assembly Language
Comments: 0

What is the use of 8251 chip?

8251 chip is mainly used as the asynchronous serial interface between the processor and the external equipment.
Posted By:Jayden Evans      Posted On: Nov 22

C++ Programming
Comments: 0

What will be the output of the mentioned code?

Consider the following code segment:
void main()
{
string s1("example");
string s2("2468");
s1.insert(2,s2);
s1.erase(3,5);
s1.replace(2,3,s2);
cout< cout<}
What will be the output of the above code?

Options

a) ex24...
Posted By:Abe Fischer      Posted On: Nov 21

C++ Programming
Comments: 0

What is an Indegree in dfs (data file structure)?

The total number of edges which are subset of set E of given graph G which is having V as terminal node is called indegree.
Posted By:Sophia Hughes      Posted On: Nov 21

C++ Programming
Comments: 0

What is Linked List in dfs (data file structure)?

Linked list is a dynamic data structure that contains a “link” to the structure containing the next item. It is a collection of structures ordered not by their physical placement in memory (like array) but by logical links that are stored as part of...
Posted By:Abigail Campbell      Posted On: Nov 19

C++ Programming
Comments: 0

List Disadvantages of Linked Lists in dfs (data file structure).

- In linked list, if we want to access any node it is difficult.
- It is occupying more memory.
Posted By:Kai Evans      Posted On: Nov 18

C++ Programming
Comments: 0

Which header file in C++ does contain function prototypes for memory allocation?

Options

a)
b)
c)
d)

Answer : c)
Posted By:Alfie Evans      Posted On: Nov 23

Assembly Language
Comments: 0

What is the use of 8251 chip?

8251 chip is mainly used as the asynchronous serial interface between the processor and the external equipment.
Posted By:Jayden Evans      Posted On: Nov 22

C++ Programming
Comments: 0

What will be the output of the mentioned code?

Consider the following code segment:
void main()
{
string s1("example");
string s2("2468");
s1.insert(2,s2);
s1.erase(3,5);
s1.replace(2,3,s2);
cout< cout<}
What will be the output of the above code?

Options

a) ex24...
Posted By:Abe Fischer      Posted On: Nov 21

C++ Programming
Comments: 0

What is an Indegree in dfs (data file structure)?

The total number of edges which are subset of set E of given graph G which is having V as terminal node is called indegree.
Posted By:Sophia Hughes      Posted On: Nov 21

C++ Programming
Comments: 0

What is Linked List in dfs (data file structure)?

Linked list is a dynamic data structure that contains a “link” to the structure containing the next item. It is a collection of structures ordered not by their physical placement in memory (like array) but by logical links that are stored as part of...
Posted By:Abigail Campbell      Posted On: Nov 19

C++ Programming
Comments: 0

List Disadvantages of Linked Lists in dfs (data file structure).

- In linked list, if we want to access any node it is difficult.
- It is occupying more memory.
Posted By:Kai Evans      Posted On: Nov 18

  91  92  93  94  95  96  97  98  99  100  101