Ask Question
15 October, 03:14

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.

+3
Answers (1)
  1. 15 October, 06:16
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers