-5

The problem is here. I don't have enough reputation to post the picture so here is the Imgur link: https://i.stack.imgur.com/6Zpwg.jpg

1 Answers1

0

You should simplify the question by turning each condition to a variable.

so, "(y > 10000) || (x > 1000 && x < 1500)"

becomes (a) || (b && c)

Use the distributive property...

(a || b) && (a || c)

Which makes the answer...

"(y > 10000 || x > 1000) && (y > 10000 || x < 1500)"

Which is Option "B".

Hope this helps

Ishan
  • 16
  • Welcome to Stack Overflow! The question is not on-topic for Stack Overflow as defined in the [help]. Please don't answer such questions; instead, you should flag them for attention and they will be closed or migrated appropriately. – Toby Speight May 01 '17 at 12:03