Harsh Raj
Harsh Raj
### Description Write a program to print reverse of a number Reverse of a number is the number obtained by reversing the digits of the original number. For example, the...
### Description Write a program to check digit Check wether given character is a digit (0-9). ``` Input : 1 Output : Digit ``` ### Tracking Issues - [ ]...
### Description Write a program to find square of a number ``` Input : 5 Output : 25 ``` ### Tracking Issues - [ ] #43 - [x] #44 -...
### Description Write a program to find the trace of a matrix The trace of a square matrix is the sum of the elements on the main diagonal (from the...
### Description Write a program to check valid date Check if a given date is valid or not. ``` Input : 2019-02-29 Output : False ``` ### Tracking Issues -...
### Description Write a program to find perimeter of a square Perimeter of square = 4 × `Side` ``` Side : 2 Perimeter : 8 ``` ### Tracking Issues -...
### Description Write a program to convert seconds to days 1 day = 24 hours = 1440 minutes = 86400 seconds ``` Input : 432000 Output : 5 ``` ###...
### Description Write a program to check leap year Leap years are years that are divisible by 4, but not by 100, unless they are also divisible by 400. For...
### Description Write a Java program to find perimeter of a square Perimeter of square = 4 × `Side` ``` Side : 2 Perimeter : 8 ``` How to contribute...
### Description Write a program to convert minutes to hours 1 hour = 60 minutes ``` Input : 300 Output : 5 ``` ### Tracking Issues - [ ] #3503...