volume_mute

Examples of bindings between attributes and entities

publish date2022/08/31 05:02:00 GMT+10

  • the asterisk symbol (*) is usually bound to the multiplication operation at (1).
  • A data type, such as int in C, is bound to a range of possible values at (2).
  • A variable in a Java program is bound to a particular data type at (3).
  • A variable may be bound to a storage cell when the program is loaded into memory at (4). That same binding does not happen until (5) in some cases, as with variables declared in Java methods.
  • A call to a library subprogram is bound to the subprogram code at (6).
Please drag and drop the selected option in the right place or type it instead
language implementation time
language design time
compile time
run time
load time

Correct Answer

(1) language design time
(2) language implementation time
(3) compile time
(4) load time
(5) run time
(6) link time

Reference

Concepts of Programming languages, 10th ed


Quizzes you can take where this question appears