The Boolean NOT is an unary operator. _________________________

Answer the following statement true (T) or false (F)

True

Computer Science & Information Technology

You might also like to view...

In the accompanying figure, an example of an element from the students vocabulary is _______.

A. firstName B. student C. instructor D. name

Computer Science & Information Technology

This if statement should execute if x is 0 or 1 and y < 10. Is it correct?

``` if(x == 0 || x == 1 && y < 10)) { cout<<”Hello!”; } ``` A. yes B. no

Computer Science & Information Technology