Answer:
'='
Explanation:
The equal ('=') is the character that is used to assign the value in the programming.
In the programming, there is a lot of character which has different meaning and uses for a different purpose.
like '==' it is used for checking equality between the Boolean.
'+' is a character that is used for adding.
'-' is a character that is used for subtraction.
similarly, '=' used for assigning.
for example:
a = a + b;
In the programming, the program evaluates the (a + b) first and then the result assigns to the variable.
Answer:
i think it’s b by process of elimination.
a value is just the value of number, fundamental isnt a math term, and variables change so
Explanation:
Public int setLimit(parameter) {
if (parameter > 10) {
return 10;
} else {
return parameter;
}
}