which of the following is not a term used as a synonym for module?\n a. method\n b. object\n c. procedure\n…

which of the following is not a term used as a synonym for module?\n a. method\n b. object\n c. procedure\n d. subroutine
Answer
Answer:
B. object
Brief Explanations:
In programming and related fields, a module is a self - contained unit of code. Method, procedure, and subroutine are often used synonymously with module as they represent discrete pieces of code for specific tasks. An object is a different concept, representing an instance of a class with its own state and behavior, and is not a synonym for module.