Dominant prevalence

Anything that was made in a language with access to memory.

  • Server software packages (nginx, apache, mysql, ...)

Embedded and IoT devices.

  • Due to lack of compiler support.

  • Due to lack of hardware capabilities.

In Python

# bo_1.py

message = "Hello World"
buffer = [None] * 10

print(message)

for i in range(15):
    buffer[i] = 'A'

print(message)
$ python3 bo_1.py
Hello World
Traceback (most recent call last):
    File "bo_1.py", line 7, in <module>
        buffer[i] = 'A'
IndexError: list assignment index out of range

In C

Last updated