Logo 
Search:

c sharp Interview FAQs

Submit Interview FAQ
No Records Found!!!
Go Ahead and Post your Interview FAQ
Home » Interview FAQs » c sharpRSS Feeds
C++ Programming
Comments: 0

What is Self-Referential Structure in dfs (data file structure)?

A structure which is referencing to another structure of same type is called self referential structure.
Posted By:Reginhard Fischer      Posted On: Dec 17

Assembly Language
Comments: 0

What is the RST for the TRAP?

RST 4.5 is called as TRAP.
Posted By:Bitten Fischer      Posted On: Dec 16

C++ Programming
Comments: 0

Write an algorithm for Unparenthesis infix to suffix expression in dfs.

1. [Initialize Stack]

top <-- 1
s[top] <-- ‘#’.

2. [Initialize output string and rank count]

POLISH <-- ‘ ‘
RANK <-- 0.

3. [Get first input string]

NEXT <-- call NEXTCHAR(INFIX).

4. [Translate infix expression]...
Posted By:Bailey Evans      Posted On: Dec 15

C++ Programming
Comments: 0

What is Multigraph in dfs (data file structure)?

Any graph which is containing parallel edges is called multigraph.
Posted By:Dylan Evans      Posted On: Dec 14

C++ Programming
Comments: 0

Which error occur due to poor understanding of the language? - Select option

Options

a) Logical error
b) Run-Time error
c) Syntax error
d) Program error

Answer : c) Syntax error
Posted By:Lilly Campbell      Posted On: Dec 13

C++ Programming
Comments: 0

Write an algorithm for Pushing a Node at the end of queue using Singly Linked List in dfs.

PROCEDURE PUSH_QUEUE(TOP)
[Where the starting pointer head has been caught in pointer ‘TOP’]

1. [Traversing to end of queue]

while (LINK(TOP) !=0)
TOP <-- LINK (TOP).

2. [Allocating the memory for new node & pushing it into queue]

...
Posted By:Redmond Fischer      Posted On: Dec 12

C++ Programming
Comments: 0

What is Self-Referential Structure in dfs (data file structure)?

A structure which is referencing to another structure of same type is called self referential structure.
Posted By:Reginhard Fischer      Posted On: Dec 17

Assembly Language
Comments: 0

What is the RST for the TRAP?

RST 4.5 is called as TRAP.
Posted By:Bitten Fischer      Posted On: Dec 16

C++ Programming
Comments: 0

Write an algorithm for Unparenthesis infix to suffix expression in dfs.

1. [Initialize Stack]

top <-- 1
s[top] <-- ‘#’.

2. [Initialize output string and rank count]

POLISH <-- ‘ ‘
RANK <-- 0.

3. [Get first input string]

NEXT <-- call NEXTCHAR(INFIX).

4. [Translate infix expression]...
Posted By:Bailey Evans      Posted On: Dec 15

C++ Programming
Comments: 0

What is Multigraph in dfs (data file structure)?

Any graph which is containing parallel edges is called multigraph.
Posted By:Dylan Evans      Posted On: Dec 14

C++ Programming
Comments: 0

Which error occur due to poor understanding of the language? - Select option

Options

a) Logical error
b) Run-Time error
c) Syntax error
d) Program error

Answer : c) Syntax error
Posted By:Lilly Campbell      Posted On: Dec 13

C++ Programming
Comments: 0

Write an algorithm for Pushing a Node at the end of queue using Singly Linked List in dfs.

PROCEDURE PUSH_QUEUE(TOP)
[Where the starting pointer head has been caught in pointer ‘TOP’]

1. [Traversing to end of queue]

while (LINK(TOP) !=0)
TOP <-- LINK (TOP).

2. [Allocating the memory for new node & pushing it into queue]

...
Posted By:Redmond Fischer      Posted On: Dec 12

  88  89  90  91  92  93  94  95  96  97  98