0 votes
0 answers
3
what is the difference between Local maxima/minima and absolute maxima/minima ???? example would be great
2 votes
1 answer
4
900man & 500woman completes a task in 2 weeks ,1200 man & 250 woman took 3 weeks to complete d same taskThen how many man required to complete d task in one week???
0 votes
1 answer
5
what is the remainder when 4^250 is divided by 142^500 /14 = 2^499 / 7 Applying fermats theorem 2^6 mod 7 =1 (2^498 * 2 ) / 7 = remainder should be 2 is i...
0 votes
1 answer
6
A shopkeeper sells a tv at 25% discount and yet manages a 10% profit. Find his profit/loss percentage if he were to instead sell the same tv at a discount of 30%.
0 votes
1 answer
10
Is this a distributive lattice????
3 votes
2 answers
14
What is the language accepted by the following DFA $\Sigma=(0,1)?Set of strings starting with 0 and have odd number of switchings (from 0 to 1 or 1 to 0, for example, 101...
5 votes
2 answers
15
For a computer address,if we reduce the no of bits by 2 and if we double the addressability then total address space will be1) Doubled 2) halved 3) Remain Same 4) NoneWh...
0 votes
1 answer
17
WHICH IS NOT A FORM OF DATA1)characters2)Numbers3) Image4) Sound5) none of these
1 votes
1 answer
19
void fun(int *p) { int q = 10; p = &q; } int main() { int r = 20; int *p = &r; fun(p); printf("%d", *p); return 0; }