Question
Three numbers a, b and c are co-prime to each other such
that ab = 88 and bc = 33. Find the value of (a + b + c).Solution
Given, ab = 88 and bc = 33 Therefore, their H.C.F = b = 11 Therefore, a = 88/11 = 8 And, c = 33/11 = 3 Therefore, a + b + c = 8 + 11 + 3 = 22
WI-FI uses
Relational Algebra is
Which network layer protocol provides a reliable, connection-oriented delivery of packets?
In natural language processing (NLP), what does TF-IDF stand for?
How many dimensions are selected in Slice operation?
Node.js is built on which JavaScript engine?
Which of the following is NOT a method for handling deadlocks?
Which of the following is a basic equation used in the COCOMO model?
Which of the following is not a limitation of binary search algorithm?
Below code will give what result for f(3)
f(int x)
{
If(x
Return;
f(x-1);
printf(“%d”, x);
f(n-1);
}