Questions tagged [megabyte]

A megabyte is a unit of size of computer memory or storage.

A megabyte is a unit of size of computer memory or storage.

It is defined as 1,048,576 bytes, or 1024 kilobytes (each of which are 1024 bytes).

22 questions
0
votes
1 answer

Gigabyte to Megabyte

Is 1GB equal to 1000MB or 1024MB? Whenever I use google to convert it, I get 1000, but on multiple Q&A sites, I see 1024. Which is it? Please do not say 'It depends on the situation'. I want a real answer. Google Answer. Online Converter.
user5684207
0
votes
0 answers

What is the size of MINI_KIND in megabytes in android

What is the size of MediaStore.Images.Thumbnails.MINI_KIND in megabytes in android? The dimension of the bitmap is said to be MINI_KIND: 512 x 384. In case you need to know: My use case is the thumbnail of a video using ThumbnailUtils.
learner
  • 11,490
  • 26
  • 97
  • 169
0
votes
1 answer

Byte to megabyte conversion doesn't work

i need convert the byte in Megabyte in my application but something is wrong.. First of all, i need display for example 1.2MB and not 1MB.. now, i have this declaration: public long mStartRX = 0; then in the onCreate mStartRX =…
David_D
  • 1,404
  • 4
  • 31
  • 65
0
votes
1 answer

database space quotas with hibernate and postgresql, limit database megabytes used per user

Good day/night to all of you. In our university project we have a database created by hibernate (using postgresql) having 17 tables(obejct). We need to post a limit to 4 object i.e. student_comments, student_attachments, student_drafts,…
Tito
  • 2,234
  • 6
  • 31
  • 65
0
votes
3 answers

C# How do I shorten my double when I converted bytes to megabytes?

Hello I made a updater that downloads update files but I always used bytes as indication now I found a way to convert it to megabytes, it works good but one little problem it returns HUGE numbers for example, a file that is 20MB will be displayed…
0
votes
1 answer

Byte to megabyte conversion difference on Windows

Why does the amount differ when I convert bytes to Megabytes? You have to multiply the amount by 1000 000 again. I thought the conversion automatically does that for you?
Ruan
  • 3,969
  • 10
  • 60
  • 87
0
votes
2 answers

Get total size in MB from database

I'm trying to get and show total size of row from database, PHP: $swall = $db->super_query("SELECT sum(size) as sum FROM dle_photo_post"); $tpl->set("{swall}", $swall['sum']); With above code, my result is like his: 82447456 Example 2: With this…
Alireza
  • 1,048
  • 5
  • 18
  • 36
1
2