Most primitive member in which roots are not present is
The characteristic polynomial of a system is q(s) = 2s5 + s4 + 4s3 + 2s2 + 1. The system is
A person wants to visit some places. He starts from a vertex and then wants to visit every vertex till it finishes from one vertex, backtracks and then explore other vertex from same vertex. What algorithm he should use
In a two-pass assembler, the task of the Pass II is to
State the complexity of algorithm given belowint function(vector arr) int len=arr.length(); if(len==0) return; temp=arr[len-1]; arr.pop_back(); return temp;
Windows Mobile applications can now be digitally signed. What's the advantage of this feature for enterprise security
What does this pseudo_code return ?int myfun(heap_arr[]) { int mini=INF; for(int i=0;i mini=min(mini,heap_arr) return mini; }
What is the output of the following code?void my_recursive_function(int n){ if(n == 0) return; printf("%d ",n); my_recursive_function(n-1);}int main(){ my_recursive_function(10); return 0;}
What will be the output
d = {"john":40, "peter":45}["john"]
Which of the following is NOT one of the five core risk areas common to all projects
When the price of a pair of shoes is decreased by 10%, the number of pairs sold increased by 20%. What is the net effect on scales
Ravi has a bag full of 10 nestle and 5 Cadbury chocolates. Out of these he draws two chocolates. What is the probability that he would get at least one nestle chocolate
Namita has 4.2 kg of flour. She has been asked to make 5 cup cakes out of every 1/2 kg of flour. How many cup cakes can she bake out of the flour she has
A jar contains 5 white, 8 red, 2 blue and 3 black balls. Find the probability that a ball drawn at random is red or blue