Advertisements
Advertisements
Question
A function to find the H.C.F and L.C.M of two numbers is defined below:
public void hcflcm(int n1, int n2)
{
num = .....?1?.....
while(n1 != n2)
{
if (n1 > n2)
n1 = ........?2?........
elseif(......?3?......)
n2 = n2 - n1;
}
hcf = n1;
1cm = .......?4....... / hcf;
}
In the above function, there are some places left blank marked with ?1 ?, ?2?, ?3? and ?4? to be filled with conditions / expressions.
Based on the above discussion, answer the following questions:
- What condition/expression will be filled in place of ?1?
- n1 + n2
- n1 / n2
- n1 * n2
- n1 % n2
- What condition/expression will be filled in place of ?2?
- n1 − n2
- n1 + n2
- n1 * n2
- None
- What condition/expression will be filled in place of ?3?
- n1 == n2
- n1 >= n2
- n1 < n2
- n1 <= n2
- What condition/expression will be filled in place of ?4?
- num
- n2
- n1
- n1 + n2
Case Study
Solution
- iii. n1 * n2
- i. n1 − n2
- iii. n1 < n2
- i. num
shaalaa.com
Is there an error in this question or solution?