lint all files

This commit is contained in:
2024-01-16 13:48:46 +00:00
parent b515ba4458
commit a321b0ce99
45 changed files with 66985 additions and 23206 deletions

View File

@@ -1,13 +1,17 @@
## Lecture 1 (12:00)
IEEE-754
- 32 and 64 bit numbers
- Float and double in java
- Promotes interoperability among programming languages
- 32 bit
- Leftmost bit is a sign bit (0=+ve 1=-ve)
- 8 bit exponent (127 bit unsigned binary number)
- 23 bit mantissa _without_ the 1 infront of the binary point
- 23 bit mantissa *without* the 1 infront of the binary point
### Scientific Notation
13.5 = 1101.1 = 1.1011x2 ^3
2.75 = 10110.11 = 1.011011x2 ^4
0.125 = 0.001 = 1x2 ^-3