Ask Question

The double ampersand characters (&&) are used to separate commands to be executed conditionally, where if the command to the left of the ampersands fails, then the command to the right of the ampersands will be executed.

True / False.

+1
Answers (1)
  1. 4 July, 13:52
    0
    False.

    Explanation:

    && The double ampersand operator is also called the AND Operator. Both the expression or commands written to it's left and right are executed if the value of both the expressions is True then the && returns True other wise if either of them is false or both are false then it return false.

    It is mostly used in if statements, else if statements, loops.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “The double ampersand characters (&&) are used to separate commands to be executed conditionally, where if the command to the left of the ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers