New answers tagged binary
1 vote
Can a tree data structure be empty?
This confusion arises from the use of ambiguous terminology to describe distinct combinatorial structures. A general tree is classified as an ordered tree, whereas a binary tree is considered a ...
-1 votes
How do I download binary files of a GitHub release?
Here are some tools that can download released executables and even act as a version manager / updater tool sorted by popularity: Repository Stars Last Commit eget 1.9k 2 years ago aqua 1.6k recently ...
Advice
0 votes
0 replies
0 views
Number of bits used for representing different types vs what the CPU uses
I appreciate that you took the time to answer but this post and your reply do not answer my question. I was looking for something more hardware based at the level of logic gates and not a debate of ...
Advice
0 votes
0 replies
0 views
Number of bits used for representing different types vs what the CPU uses
Off-core transfers are whole cache lines (into / from per-core private L1/L2 caches), except for uncacheable memory regions. (Write-back caches are nearly universal, rather than write-through.) Semi-...
Advice
0 votes
0 replies
0 views
Number of bits used for representing different types vs what the CPU uses
thanks, your reply was very helpful unlike some others. The carry-lookahead and carry-select were things i didn't know about and are topics that answer my question. I will look into it. Also by any ...
1 vote
Why is there 16 possible functions when there are 2 inputs?
11 10 01 00 Function 0 0 0 0 NEVER 0 0 0 1 A NOR B 0 0 1 0 B AND (NOT A) 0 0 1 1 NOT A 0 1 0 0 A AND (NOT B) 0 1 0 1 NOT B 0 1 1 0 A XOR B 0 1 1 1 A NAND B 1 0 0 0 A AND B 1 0 0 1 A XNOR B 1 0 1 0 B 1 ...
Advice
2 votes
0 replies
0 views
Number of bits used for representing different types vs what the CPU uses
Very few CPUs have single-cycle latency for integer multiply, just low-clock-speed things like ARM Cortex-M0+ with the optional fast multiplier. But probably you're talking about throughput? On a ...
Advice
0 votes
0 replies
0 views
Number of bits used for representing different types vs what the CPU uses
(SSE2, available on Intel hardware in 2000, looks like it could use 4 32-bit floats or 2 64-precision floats in parallel in a single operation using 128-bit registers.)
Advice
0 votes
0 replies
0 views
Number of bits used for representing different types vs what the CPU uses
In 2026, it makes almost no practical difference for most applications, and you should use whatever bit width or representation is most natural in your language. In C I'd use an int (32 or 64 bits) ...
Advice
1 vote
0 replies
0 views
Number of bits used for representing different types vs what the CPU uses
If I could I would flag this as a poor duplicate of Float vs Double Performance (vintage 2009). Some of what it says there is outdated - the original x87 numeric coprocessor could do 80bit float ...
3 votes
How to return binary from AWS Lambda with Function URL
After more digging around, I figured out that the problem is actually unrelated to AWS Lambda Function URLs. The problem is the console editor (which is now VSCode, not Cloud9). If I upload a binary ...
Top 50 recent answers are included
Related Tags
binary × 14795python × 2283
c × 1698
c++ × 1626
java × 1577
hex × 970
c# × 886
file × 763
decimal × 713
string × 662
arrays × 624
javascript × 621
php × 469
bit-manipulation × 461
algorithm × 444
r × 373
python-3.x × 364
bit × 363
byte × 339
matlab × 313
assembly × 308
math × 308
integer × 296
search × 285
floating-point × 283