- 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
How to remove decimal point?
To do :
We have to find out how to remove the decimal point.
Solution :
To remove the decimal point we have to convert it into a rational number.
To convert a decimal to a rational number follow these steps:
Step 1: Write down the decimal divided by 1.
Step 2: Multiply both top and bottom by 10 for every number after the decimal point. (For example, if there are two numbers after the decimal point, then use 100, if there are three then use 1000, etc.)
Step 3: Simplify (or reduce) the Rational number.
For example:
Convert 0.75 to a Rational number
Step 1: Write down 0.75 divided by 1.
$\frac{0.75}{1}$
Step 2: Multiply both top and bottom by 100 (because there are 2 digits after the decimal point, so that is $10\times10=100$)
$\frac{0.75\times100}{1\times100} = \frac{75}{100}$.
- Related Articles
- How to remove the digits after the decimal point in axis ticks in Matplotlib?
- How to Automatically Insert a Decimal Point to a Number in Excel?
- How to get number located at 2 places before decimal point MySQL?
- How to Align a Column of Numbers by Decimal Point in Excel?
- Decimal fixed point and floating point arithmetic in Python
- How can I remove the decimal part of JavaScript number?
- C# program to remove all the numbers after decimal places
- Counting numbers after decimal point in JavaScript
- How do we convert binary to decimal and decimal to binary?
- How to use MySQL decimal?
- How to Convert Binary to Decimal?
- How to Convert Decimal to Binary?
- How to Convert Decimal to Octal?
- How to Convert Decimal to Hexadecimal?
- How to Convert Hexadecimal to Decimal?
