Computer Science, asked by HelpingNerd, 3 months ago

Logical operators are used to assign a value to the variable. true or false​

Answers

Answered by freedarajesh2003
15

Answer:

Explanation:

Logical operators are used to assign a value to the variable. ... The value of a variable cannot be changed during the program execution. . In Python, 'and' is an example of Logical operators.

Answered by Raghav1330
1

This assertion is False. The variable is given a value using assignment operators.

  • The assignment operator allows a value to be assigned to a variable.
  • The outcome of the assignment operation is the value that was assigned.
  • The assignment operator can be chained to give the same value to a number of variables.
  • A variable can be given a value using assignment operators. The assignment operator has a variable as its left side operand and a value as its right side operand.
  • The compiler won't raise an error if the variable on the left and the value on the right both have the same data type.

#SPJ3

Similar questions