Ask Question

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

+2
Answers (1)
  1. 20 November, 00:51
    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 & 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