Posts

Showing posts from March, 2021

Pattern Program using 2D Array in JAVA

Image
Pattern Program #2 using Array in Java Question :   Write a program to print the following pattern.

Interesting Pattern Program using Array in JAVA

Image
Pattern Program using Array in Java Question :   Write a program to print the following pattern.  

Frequency of each digit of a number in Java

Image
Frequency of each digit of a Number Question :   Write a program to count and display the frequency of each digit of a number. For Example  :-   Input                                                            : 19224 Output                                                      :   Frequency of 1 is : 1                                                                        Frequency of 2 is : 2          ...

Convert Time into Words in JAVA

Image
Time Program in Java Question :   Given a time in the format of hh:mm (12-hour format) 0 < hh <=12, 0 <= mm < 60. The task is to convert it into words as shown: For Example  :-   Input                                                           : hr = 5, min = 0 Output                                                     : Five O' Clock   Input                                                           : hr = 6, min = 24 Output        ...