Variable Types: Integers Flashcards
1
Q
int/uint
A
signed and unsigned intergers of various sizes
2
Q
uint8, uint 256, int8,int256
A
unisgned and signed intergers of 8 - 256 bits
3
Q
unit8
A
8 digit binary number
takes one byte (8 bits) of storage space
4
Q
int/uint
A
aliases for int256 and uint256
5
Q
a comparison will
A
evaluate to a bool value
6
Q
<=, <, ==, !=, >=, >
A
comparisons
7
Q
+,-,*,/
A
operations
8
Q
%
A
remainder
9
Q
**
A
exponentiation