Gate Exam Logical Reasoning Blood Relations

In housing society, half of familiars have a single child per family, while the
remaining half have two children per family. The probability that a child picked
at random has a sibling is _____.

Read Solution (Total 2)

Gate Other Question

Parcels from sender S to receiver R passes. Sequentially through two post offices. Each
post-offices has a probability (1/
5) of losing an incoming parcel, undependable of all other
parcels. Given that parcel is lost, the probability that it was lost by 2nd post office is...
_____.
Consider the following C function:
int f(int n)
{
static int are = 0;
If (n < = 0) return 1;
If (n > 3)
{ r = n;
return f (n – 2) + 2;
}
return f(n – 1) + r;
}
What is the value of f(5)?