Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 151 Bytes

bases.md

File metadata and controls

13 lines (9 loc) · 151 Bytes

Bases

What is the result of each of the following statements:

  1. 0b10 + 0b10
  2. 0o10 ** 3
  3. 0x10 & 2

Solution

  1. 4
  2. 512
  3. 0