- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Find the greatest five-digit number, which is a perfect square.
Given :
The given statement is 'the greatest five-digit number which is a perfect square'.
To do :
We have to find such a number.
Solution :
The greatest 5 digit number is 99999.
To find the largest 5 digit number which is a perfect square, first, we have to find out the smallest number which should be subtracted from this number to obtain a perfect square.
For this, we apply the method of finding the square root of 99999 by division method.
3 3 | 99999 9 |
61 1 | 99 61 |
626 6 | 3899 3756 |
143 |
The remainder is 143.
Therefore, if we subtract 143 from 99999 then the new number will be a perfect square.
The required number is $99999 - 143 = 99856$.
Therefore, the greatest five-digit perfect square number is 99856.
- Related Articles
- Find the greatest four digit number which is a perfect square.
- Find the greatest number of two digits which is a perfect square.
- Find the greatest number of 5 digits which is a perfect square.
- Find the greatest number of 4-digits which is a perfect square.
- Find the greatest number of three digits which is a perfect square.
- How To Find The Smallest 5 Digit Number Which Is A Perfect Square ?
- Find the least $6$ digit which is a perfect square.
- Which is the greatest 5 -digit number?
- The difference between the greatest five-digit number and the greatest five-digit number with all different digits is:(a) 1000 (b) 12345(c) 1 (d) 1234
- Find the least number with four digits which is a perfect square
- Find the least number of four digits which is a perfect square.
- Find the least number of six-digits which is a perfect square.
- Find out the six digit smallest perfect square.
- Find the least number of three digits which is perfect square.
- Which number is greater, the least $9$ digit number or the number which is $2$ more than the greatest $8$ digit number?

Advertisements