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

Which interrupt is not level-sensitive in 8085?

RST 7.5 is a raising edge-triggering interrupt.
Posted By:Hedwig Miller      Posted On: May 01

C++ Programming
Comments: 0

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

An edge x belongs to E which joins the nodes u and v is said to be incident to the nodes u and v.
Posted By:Skye Hughes      Posted On: May 01

C++ Programming
Comments: 0

What is an Adjacent Matrix in dfs (data file structure)?

It is a tabular or matrix representation of a given graph which gives us the information about each and every adjacent node is called adjacent matrix.
Posted By:Adelhelm Fischer      Posted On: Apr 30

C++ Programming
Comments: 0

Write an algorithm for processing Heap in dfs (data file structure).

HEAP_SORT(K,N)
[K is the array of created heap and N is the total number of elements in the array]

1. [Create the Initial Heap]
Call CREATE_HEAP(K,N).
2. [Perform Sort]
Repeat thru step 7 for
Q Q & (KEY KEY)
K[I] K[J+1]
K[I] <...
Posted By:Isabella Campbell      Posted On: Apr 30

C++ Programming
Comments: 0

Write an algorithm for converting a general tree to a binary tree in dfs (data file structure).

PROCEDURE CONVERT
[Given a forest of trees, it is required to convert this forest into an equivalent binary tree with a list head (HEAD)].

1. [Initialize]

HEAD PRED_LEVEL
then LPTR(PRED_LOC) <-- NEW
else if LEVEL = PRED_LEVEL
R...
Posted By:Michael Evans      Posted On: Apr 29

Assembly Language
Comments: 0

Explain priority interrupts of 8085.

The 8085 microprocessor has five interrupt inputs. They are TRAP, RST 7.5, RST 6.5, RST 5.5, and INTR. These interrupts have a fixed priority of interrupt service. If two or more interrupts go high at the same time, the 8085 will service them on prio...
Posted By:Nathan Evans      Posted On: Apr 26

Assembly Language
Comments: 0

Which interrupt is not level-sensitive in 8085?

RST 7.5 is a raising edge-triggering interrupt.
Posted By:Hedwig Miller      Posted On: May 01

C++ Programming
Comments: 0

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

An edge x belongs to E which joins the nodes u and v is said to be incident to the nodes u and v.
Posted By:Skye Hughes      Posted On: May 01

C++ Programming
Comments: 0

What is an Adjacent Matrix in dfs (data file structure)?

It is a tabular or matrix representation of a given graph which gives us the information about each and every adjacent node is called adjacent matrix.
Posted By:Adelhelm Fischer      Posted On: Apr 30

C++ Programming
Comments: 0

Write an algorithm for processing Heap in dfs (data file structure).

HEAP_SORT(K,N)
[K is the array of created heap and N is the total number of elements in the array]

1. [Create the Initial Heap]
Call CREATE_HEAP(K,N).
2. [Perform Sort]
Repeat thru step 7 for
Q Q & (KEY KEY)
K[I] K[J+1]
K[I] <...
Posted By:Isabella Campbell      Posted On: Apr 30

C++ Programming
Comments: 0

Write an algorithm for converting a general tree to a binary tree in dfs (data file structure).

PROCEDURE CONVERT
[Given a forest of trees, it is required to convert this forest into an equivalent binary tree with a list head (HEAD)].

1. [Initialize]

HEAD PRED_LEVEL
then LPTR(PRED_LOC) <-- NEW
else if LEVEL = PRED_LEVEL
R...
Posted By:Michael Evans      Posted On: Apr 29

Assembly Language
Comments: 0

Explain priority interrupts of 8085.

The 8085 microprocessor has five interrupt inputs. They are TRAP, RST 7.5, RST 6.5, RST 5.5, and INTR. These interrupts have a fixed priority of interrupt service. If two or more interrupts go high at the same time, the 8085 will service them on prio...
Posted By:Nathan Evans      Posted On: Apr 26

  68  69  70  71  72  73  74  75  76  77  78