About 10,000 results
Open links in new tab
  1. What are kilobytes, megabytes, and gigabytes?

    Mar 4, 2005 · What are kilobytes, megabytes, and gigabytes? Answer: The size of computer data is measured in bytes. Just like a kilometer is a measure of 1000 meters, kilobytes, megabytes, …

  2. Excel: Unit Conversion (MB, GB, KB etc.) - Stack Overflow

    Jul 14, 2015 · I have a value a number of cells in a spreadsheet, all which cointain data which is a number followed by the Units E.g 1.13 GB 134.3 MB 104.34 MB What I am after to try and do …

  3. How can I convert byte size into a human-readable format in Java?

    We can completely avoid using the slow Math.pow() and Math.log() methods without sacrificing simplicity since the factor between the units (for example, B, KB, MB, etc.) is 1024 which is …

  4. Python format size application (converting B to KB, MB, GB, TB)

    May 7, 2017 · I am trying to write an application to convert bytes to kb to mb to gb to tb. Here's what I have so far:

  5. PowerShell display files size as KB, MB, or GB - Stack Overflow

    PowerShell display files size as KB, MB, or GB Asked 11 years, 5 months ago Modified 1 year, 10 months ago Viewed 147k times

  6. Better way to convert file sizes in Python - Stack Overflow

    Mar 4, 2011 · I've also just added Kb (Kilobit), Mb (Megabit), and Gb (Gigabit) - users often get those confused in terms of network or file-transfer speeds, so thought it might be handy.

  7. Really 1 KB (KiloByte) equals 1024 bytes? [closed]

    Until now I believed that 1024 bytes equals 1 KB (kilobyte) but I was reading on the internet about decimal and binary system. So, actually 1024 bytes = 1 KB would be the correct way to define …

  8. javascript - Get file size in mb or kb - Stack Overflow

    If the file size is less than 1 mb then we know its "kb", so divide the file size by 1kb (1024 bytes) to get size in "kb" and conserve the 2 decimal spaces. Likewise you can also do for "Gb" or other …

  9. Correct way to convert size in bytes to KB, MB, GB in JavaScript

    I got this code to covert size in bytes via PHP. Now I want to convert those sizes to human readable sizes using JavaScript. I tried to convert this code to JavaScript, which looks like this: …

  10. How to correctly convert filesize in bytes into mega or gigabytes?

    Jul 8, 2016 · The abbreviations are KB, MB, GB and so on. The widely used 1024 bytes = 1 kilobyte should instead by called 1024 bytes = 1 Kibibyte (KiB), 1024 KiB = 1 Mebibyte (MiB), …