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 of the following will be used to access the two entries, namely key and value of the map?

Consider ‘i’ is an iterator that accesses the elements of a map. Which of the following will be used to access the two entries, namely key and value of the map?

Options

a) i.first, i.second
b) (*i).first, (*i).second
c) *i.first, *i.second
d...
Posted By:Binge Fischer      Posted On: Apr 21

C++ Programming
Comments: 0

What is graph in dfs (data file structure)?

Graph is a non-linear data structure consists of non-empty set V which is called set of vertices and a set of edges E and a mapping between each and every members of E to the set of two nodes from V.
Posted By:Bittan Fischer      Posted On: Apr 21

C++ Programming
Comments: 0

What is Prefix Expression in dfs (data file structure)?

Whenever the operator is on left side of the operand then the expression is called prefix or polish expression.
Posted By:Adalrico Fischer      Posted On: Apr 15

C++ Programming
Comments: 0

What is Doubly or Two-Way Linked List in dfs (data file structure)?

A linked list which can be traversed both in backward as well as forward direction is called doubly linked list. It uses double set of pointers.
Posted By:Imelda Miller      Posted On: Apr 13

Assembly Language
Comments: 0

Functions of an accumulator

The accumulator is the register associated with the ALU operations and sometimes I/O operations. It is
an integral part of ALU. It holds one of data to be processed by ALU. It also
temporarily stores the result of the operation performed by the ALU...
Posted By:Sophia Hughes      Posted On: Apr 12

C++ Programming
Comments: 0

Identify the correct syntax for declaring a dynamic array of characters using the above templat

Consider the following code segment:
template
class sample
{
……..//code
};
Identify the correct syntax for declaring a dynamic array of characters using the above template.

Options

I. sample characterArray;
II. sample characterArray; ...
Posted By:Ava Campbell      Posted On: Apr 11

C++ Programming
Comments: 0

Which of the following will be used to access the two entries, namely key and value of the map?

Consider ‘i’ is an iterator that accesses the elements of a map. Which of the following will be used to access the two entries, namely key and value of the map?

Options

a) i.first, i.second
b) (*i).first, (*i).second
c) *i.first, *i.second
d...
Posted By:Binge Fischer      Posted On: Apr 21

C++ Programming
Comments: 0

What is graph in dfs (data file structure)?

Graph is a non-linear data structure consists of non-empty set V which is called set of vertices and a set of edges E and a mapping between each and every members of E to the set of two nodes from V.
Posted By:Bittan Fischer      Posted On: Apr 21

C++ Programming
Comments: 0

What is Prefix Expression in dfs (data file structure)?

Whenever the operator is on left side of the operand then the expression is called prefix or polish expression.
Posted By:Adalrico Fischer      Posted On: Apr 15

C++ Programming
Comments: 0

What is Doubly or Two-Way Linked List in dfs (data file structure)?

A linked list which can be traversed both in backward as well as forward direction is called doubly linked list. It uses double set of pointers.
Posted By:Imelda Miller      Posted On: Apr 13

Assembly Language
Comments: 0

Functions of an accumulator

The accumulator is the register associated with the ALU operations and sometimes I/O operations. It is
an integral part of ALU. It holds one of data to be processed by ALU. It also
temporarily stores the result of the operation performed by the ALU...
Posted By:Sophia Hughes      Posted On: Apr 12

C++ Programming
Comments: 0

Identify the correct syntax for declaring a dynamic array of characters using the above templat

Consider the following code segment:
template
class sample
{
……..//code
};
Identify the correct syntax for declaring a dynamic array of characters using the above template.

Options

I. sample characterArray;
II. sample characterArray; ...
Posted By:Ava Campbell      Posted On: Apr 11

  70  71  72  73  74  75  76  77  78  79  80