Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 190 Bytes

bases.md

File metadata and controls

11 lines (7 loc) · 190 Bytes

Bases

What is the result of each of the following statements:

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

Solution

Click here to view the solution