When we write programs, many operations which are performed at runtime can actually be done at compile time – that is, baked into code. This improves program performance since operations are no longer being computed on the fly, during runtime. While these techniques of offloading operations to compile...