Tag

binary representation

1 views collected around this technical thread.

Full-Stack Internet Architecture
Full-Stack Internet Architecture
Aug 25, 2020 · Fundamentals

Understanding Bitwise Operations in Java: Uses, Representations, and the Seven Operators

This article explains the purpose and practical benefits of bitwise operations in Java, describes signed number representations (sign‑magnitude, ones' complement, two's complement), shows how bits can optimize time and space, and details the seven common bitwise operators with examples and a reference table.

Bitwise OperationsJavaPerformance Optimization
0 likes · 13 min read
Understanding Bitwise Operations in Java: Uses, Representations, and the Seven Operators
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Jun 21, 2019 · Fundamentals

Fundamentals of Computers: History, Integrated Circuits, Digital Logic, and Binary Systems

This article provides a comprehensive overview of computer fundamentals, covering the evolution from first‑generation vacuum‑tube machines to modern large‑scale integrated‑circuit computers, explaining digital circuits, logic gates, binary representation, and introducing emerging photon and quantum computing concepts.

Computer HistoryQuantum Computingbinary representation
0 likes · 9 min read
Fundamentals of Computers: History, Integrated Circuits, Digital Logic, and Binary Systems
Youzan Coder
Youzan Coder
Oct 19, 2018 · Fundamentals

Understanding NaN in JavaScript: Representation and Comparison

JavaScript’s NaN represents undefined numeric results, appears when operations like Math.sqrt(-1) occur, has multiple binary forms, and is distinguished as Quiet or Signaling; because NaN !== NaN, comparisons rely on special checks such as isnan, with implementations varying across environments like V8 and Apple’s C library.

C libraryJavaScriptNAN
0 likes · 8 min read
Understanding NaN in JavaScript: Representation and Comparison