- 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 highest power of 2 in 1440.
Given :
The given number is 1440.
To do :
We have to find the highest power of 2 in 1440.
Solution :
2 | 1440
__|_______
2 | 720
__|_______
2 | 360
__|_______
2 | 180
__|_______
2 | 90
__|_______
3 | 45
__|_______
3 | 15
__|_______
5
$1440 = 2\times 2\times 2\times 2\times 2\times 3\times 3\times 5$
$2^5 \times 3^2 \times 5$
Therefore, the highest power of 2 in 1440 is 5.
- Related Articles
- Find the highest power of 5 in 23750.
- Golang Program to round up the next highest power of 2.
- Find the value of:2 to the power 6.
- Program to find Reordered Power of 2 in Python
- Program to find HCF (Highest Common Factor) of 2 Numbers in C++
- Program to find out the value of a power of 2 in Python
- Reordered Power of 2 in C++
- Find value of y mod (2 raised to power x) in C++
- C/C++ Program to Find sum of Series with n-th term as n power of 2 - (n-1) power of 2
- Program to find the highest altitude of a point in Python
- Find power of power under mod of a prime in C++
- How to find the highest number in a column?
- Program to find sum of the 2 power sum of all subarray sums of a given array in Python
- Find the highest 3 values in a dictionary in Python program
- MongoDB query to find the highest numeric value of a column?

Advertisements