KnowledgeBoat Logo

Java Number Programs (ISC Classes 11 / 12)

  • Java Iterative Stmts

    A number is said to be Duck if the digit zero is (0) present in it. Write a program to accept a number and check whether the number is Duck or not. The program displays the message accordingly. (The number must not begin with zero)
    Sample Input: 5063
    Sample Output: It is a Duck number.
    Sample Input: 7453
    Sample Output: It is not a Duck number.

    View Answer

    82 Likes


  • Java Iterative Stmts

    Write a program to display all the 'Buzz Numbers' between p and q (where p<q). A 'Buzz Number' is the number which ends with 7 or is divisible by 7.

    View Answer

    131 Likes


  • Java Iterative Stmts

    Write a menu driven class to accept a number from the user and check whether it is a Palindrome or a Perfect number.

    (a) Palindrome number: (A number is a Palindrome which when read in reverse order is same as in the right order)

    Example: 11, 101, 151 etc.

    (b) Perfect number: (A number is called Perfect if it is equal to the sum of its factors other than the number itself.)

    Example: 6 = 1 + 2 + 3

    View Answer

    130 Likes


  • Java Iterative Stmts

    A Dudeney number is a positive integer that is a perfect cube such that the sum of its digits is equal to the cube root of the number. Write a program to input a number and check and print whether it is a Dudeney number or not.

    Example:

    Consider the number 512.

    Sum of digits = 5 + 1 + 2 = 8
    Cube root of 512 = 8

    As Sum of digits = Cube root of Number hence 512 is a Dudeney number.

    View Answer

    142 Likes


  • Java Iterative Stmts

    A tech number has even number of digits. If the number is split in two equal halves, then the square of sum of these halves is equal to the number itself. Write a program to generate and print all four digits tech numbers.

    Example:

    Consider the number 3025

    Square of sum of the halves of 3025 = (30 + 25)2
    = (55)2
    = 3025 is a tech number.

    View Answer

    190 Likes


  • Java Iterative Stmts

    Write a program to display all the numbers between m and n input from the keyboard (where m<n, m>0, n>0), check and print the numbers that are perfect square. e.g. 25, 36, 49, are said to be perfect square numbers.

    View Answer

    81 Likes


  • Java Iterative Stmts

    Write a program to input a number and count the number of digits. The program further checks whether the number contains odd number of digits or even number of digits.

    Sample Input: 749
    Sample Output: Number of digits=3
    The number contains odd number of digits.

    View Answer

    95 Likes


  • Java Iterative Stmts

    Write a program to input a number and display the new number after reversing the digits of the original number. The program also displays the absolute difference between the original number and the reversed number.

    Sample Input: 194
    Sample Output: 491
    Absolute Difference= 297

    View Answer

    104 Likes


  • Java Iterative Stmts

    The Greatest Common Divisor (GCD) of two integers is calculated by the continued division method. Divide the larger number by the smaller, the remainder then divides the previous divisor. The process repeats unless the remainder reaches to zero. The last divisor results in GCD.

    Sample Input: 45, 20
    Sample Output: GCD=5

    View Answer

    122 Likes


Showing 21 - 29 of 29 Questions