Ask Question
2 September, 07:26

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

+5
Answers (1)
  1. 2 September, 10:21
    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?
Get an answer to your question ✅ “What are some situations where you might find it useful to use the "!" symbol in a program? ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers