Advertisements
Advertisements
प्रश्न
The following program is designed using a class to find GCD of two numbers with the following specifications.
class name : GCD
Data members : n1, n2
Member Methods:
- GCD(......): A parameterised constructor to accept the values of nl and n2.
- void Compute(): To find GCD of the numbers n1 and n2.
- void display(): To display GCD of the numbers.
There are some places left blank marked with ?1?, ?2?, ?3? and ?4? to be filled with the value/expression.
import java.util.*;
class GCD
{
int n1, n2, t = 0;
GCD( ..... ?1?...., n)
{
n1 = m;
n2 = n;
void Compute()
{
while(.....?2?.....)
{
t = n1 % n2;
n1 = n2;
n2 = ?3?;
}
}
void Display()
{
System.out.println("GCD of two numbers = " + ....?4?.....);
}
}
Based on the above discussion, answer the following questions:
- What value will be filled in place of ?1?
- 1
- 0
- m
- t
- What logical expression will be filled in place of ?2?
- n1 %2 == 0
- n1/n2 == 0
- n1%n2 == 0
- n1%n2 != 0
- What variable will be filled in place of ?3?
- n1
- t
- n2
- gcd
- What variable will be filled in place of ?4?
- n2
- n1
- t
- None
लघु उत्तरीय
उत्तर
- iii. m
- iv. n1%n2 != 0
- ii. t
- i. n2
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 7: Constructors - Review Insight [पृष्ठ ४१६]