|
Related Questions |
View Answer |
|
State recursion and its different types?
|
View Answer
|
|
Define and describe an iterative process with general steps of flow chart?
|
View Answer
|
|
Given a system of N equations whose coefficient matrix A is triangular and is stored in a vector R and the right hand side vector B, this algorithm obtains the solution vector X. Sum is a temporary variable. I am M are integer variables. How to follow the algorithm?
|
View Answer
|
|
In Algorithmic context how would you define “book keeping operations”?
|
View Answer
|
|
Explain the function SUB in algorithmic notation?
|
View Answer
|
|
What are the arguments present in pattern matching algorithms?
|
View Answer
|
|
Define string in an algorithmic notation and an example to support it?
|
View Answer
|
|
What are the two ways through which the Markov algorithm terminates?
|
View Answer
|
|
What is the general strategy for Markov Algorithm?
|
View Answer
|
|
The most basic tool used to express generating functions in closed form is the closed form expression for the geometric series, which is an expression of the form a+ar+ar2+-------+arn. It can either be terminated or extended indefinitely. What are the restrictions for this geometric series?
|
View Answer
|
|
Name any three skills which are very important in order to work with generating functions.
|
View Answer
|
|
Explain about the algorithm ORD_WORDS?
|
View Answer
|
|
Explain the function of KWIC_Create?
|
View Answer
|
|
What is the general algorithm model for any recursive procedure?
|
View Answer
|
|
Give the difference of format between an algorithm and a sub algorithm?
|
View Answer
|
|
Define and state the importance of sub algorithm in computation and its relation ship with main algorithm?
|
View Answer
|
|
How to find median of a BST?
|
View Answer
|
|
How do you apply Binary Search on 2D array supposed you have 2D array with integers sorted both horizontally and vertically. If you find any occurrence of the value you are looking for you return true else false. What is the complexity?
For example the 2D array could look like the following
1 4 5 6 2 5 7 9
|
View Answer
|