Advertisements
Advertisements
प्रश्न
The following program segment calculates the norm of a number. Thenorm of a number is the square root of sum of squares of all the digits of the number.
Sample Input: 68
Sample Output: The norm of 68 is 10
[Hint: 6x6 + 8x8 = 36 + 64 = 100
The square root of 100 is 10. Hence, norm of 68 is 10]
There are some places in the program left blank marked with ?1?, ?2?, ?3? and ?4? to be filled with variable/ function/ expression.
Scanner in = new Scanner(System.in);
int num;
int d, s = 0;
num = ..... ?1? .....
while (....?2?....)
{
d = n % 10;
s = ....?3?....;
n = n / 10;
}
System.out.println("The norm of" + num + "is" + ...?4?...);
Based on the above discussion, answer the following questions:
- Which of the following will be filled in place of ?1?
- in.nextlnteger;
- in.Nextlnt();
- in.nextlnt()
- in.nextint();
- What will you fill in place of ?2?
- num > 0
- num < 0
- num > 1
- num = 0
- What will you fill in place of ?3?
- s + d * d
- s * d + d
- s * s + d
- s + d
- What will you fill in place of ?4?
- Math.sqrt(s)
- Math.SQRT(s)
- Math.sqrt(n)
- Math.sqrt(num)
संक्षेप में उत्तर
उत्तर
- iii. in.nextlnt();
- i. num > 0
- i. s + d * d
- i. Math.sqrt(s)
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?