Ask Question
24 September, 23:24

What are some situations where you might find it useful to use the "!" symbol in a program?

+5
Answers (1)
  1. 25 September, 02:08
    0
    The NOT operator can be useful to excludes unwanted items (or irrelevant items).

    Explanation:

    In a lot of computer languages, the "!" symbol stands for the Boolean operator "NOT".

    The NOT operator can be useful to excludes unwanted items (or irrelevant items).

    Suppose you want to check if two conditions are not equal to each other, and when that condition is true, you can control some specific the outcome, or let something happen ...

    if (condition1! = condition2) then

    whatever you want done ...

    end if
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “What are some situations where you might find it useful to use the "!" symbol in a program? ...” 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