212k views
4 votes
In computer programming and logical reasoning, what are the respective terminologies for the boolean operators AND and OR? Additionally, how do logicians refer to sub-routines or methods with parameters that pass arguments, and what are these arguments termed as per logic's domain of discourse?

a) Logical conjunction and logical disjunction for AND and OR operators respectively; predication for sub-routines with bound variables in a typed domain of discourse called bound variables.

b) Logical addition and logical subtraction for AND and OR operators respectively; parameters for sub-routines with bound variables in a typed domain of discourse called arguments.

c) Logical connection and logical separation for AND and OR operators respectively; parameters for sub-routines with unbound variables in a typed domain of discourse called predicates.

d) Logical synthesis and logical division for AND and OR operators respectively; parameters for sub-routines with bound variables in a typed domain of discourse called lambdas.

User Stslavik
by
8.6k points

1 Answer

4 votes

Final answer:

In computer programming and logical reasoning, the respective terminologies for the boolean operators AND and OR are logical conjunction and logical disjunction. Logicians refer to sub-routines or methods with parameters that pass arguments as predicates, and these arguments are called bound variables.

Step-by-step explanation:

In computer programming and logical reasoning, the respective terminologies for the boolean operators AND and OR are logical conjunction and logical disjunction.

Logical conjunction (AND) combines two conditions and evaluates to true only if both conditions are true. Logical disjunction (OR) combines two conditions and evaluates to true if at least one of the conditions is true.

Logicians refer to sub-routines or methods with parameters that pass arguments as predicates. In logic's domain of discourse, these arguments are called bound variables. Bound variables are variables that have a specific meaning within the scope of the predicate.

User Oriont
by
8.0k points