0 votes
84
can anyone tell me difference between dense and sparse matrix :))
1 votes
85
The solution to the quadratic equationx^2-11x+22=0 are x=3 and x=6. What is the base of the numbers?
1 votes
87
Consider the experiment of throwing a die, if a multiple of 3 comes up, throw thedie again and if any other number comes, toss a coin. Find the conditional probabilityof ...
1 votes
88
10 distinct accident occurs in a week.What is the probability that all accidents occured on the same day ?
0 votes
89
If f(n)=O(g(n)). && g(n) != O(f(n))g(n) = O(h(n)). && h(n) = O(g(n))Check following statement are true/false?1. f(n)+h(n)=theta(g(n))2. f(n)*h(n)=theta(g(n)*h(n))3. g...
1 votes
91
T(n)= C+T(n-1), if n>1= d, if n≤ 1 What is tme complexity?
1 votes
92
Please tell the output ! With explanation..#include<stdio.h>int main(){ printf("%d", 2<<2>>2); printf("\n%d", 2>>2<<2<<(1<<1)); return 0;}
5 votes
93
How many 5 digit numbers can be formed from the integers 1,2......9 if no digit can appear more than twice?
3 votes
94
main ( ){int a = 2, b, c;a* = b = c = 4;a = b = c;printf (“%d”, a);a = = (b = c);printf (“%d”, a);}What will be the output?Not able to understand !!
0 votes
95
Following is the way of checking the one to one functionorCan i use bi implication in between these?If not,then why?
3 votes
96
Analyze what is happening and why?int *ptr=(int*)0X12341230; int *ptr2=((int*)(((char*)ptr)+1));char *ptr=(char*) 0X12341230; void *ptr2=ptr+1;
1 votes
97
A binary search algorithm is implemented using recurrsionthen what is the space and time complexity?
0 votes
98
What is difference between declaration and definition ...in c ?please explain with examples
1 votes
99
Please tell the output with explanation!#include<stdio.h>int main(){int a,b;printf("%d ",12);printf("%d ",143);printf("%d ",scanf("%d%d",&a,&b));}
0 votes
100