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

B. no

Computer Science & Information Technology

You might also like to view...

The Input Mask Wizard can be used in the table's ________ view

A) Print Preview B) Datasheet C) Design D) Both Datasheet and Design

Computer Science & Information Technology

Class deque provides:

a. Efficient indexed access to its elements. b. The ability to add storage at either end of the deque. c. Efficient insertion and deletion operations at the front and back of a deque. d. All of the above.

Computer Science & Information Technology