Question
Indicate when each of the following bindings takes place C++ (language design time, language implementation time, compile time, link time, load time, or run time). If more than one time is possible time. Binding of the float type to a specific number of bytes. (i.e., the decision to use a specific number of bytes to store a float value) Binding of the int type to a specific set of values Binding of a variable declared outside a function to a specific memory address. Binding of a named array variable to a specific number of dimensions Binding of an operator to a specific number of operands.
Explanation / Answer
a) Binding of the float type to a specific number of bytes is done in language implementation time
b) Language implementation time
c) Link time as this time is refered to functions
d) Load time
e) Run time