Questions tagged [advantages]

3 questions
209
votes
11 answers

What is the advantage of little endian format?

Intel processors (and maybe some others) use the little endian format for storage. I always wonder why someone would want to store the bytes in reverse order. Does this format have any advantages over the big endian format?
Cracker
  • 3,153
  • 5
  • 19
  • 20
25
votes
8 answers

Advantages and disadvantages of using bit masks in database

Not so long ago I talked to my colleague and he was definitely against using bit masks because it is hard to understand all the values that are stored in the database. In my opinion it is not always a bad idea to use them, for example to determine…
Alex Ovechkin
  • 361
  • 1
  • 3
  • 5
14
votes
5 answers

Can all the recursive functions be coded with iterations?

What are the advantages of recursion? Some programming languages can optimize tail recursion, but, still in general terms, recursion consume more resources than regular loops. Is it possible to have an iterative version of some recursive function?
OscarRyz
  • 1,675
  • 3
  • 15
  • 26