160 views

1 Answer

Best answer
2 votes
2 votes
Infix expression$:A/B−(C∗D∗E)$

$A/B−((C∗D)∗E)$

$A/B - ((*CD)*E)$

$A/B-(**CDE)$

$(/AB) - (**CDE)$

Prefix expression$:-/AB**CDE$

So, the correct answer is $(C).$
selected by
Answer:

Related questions

1 votes
1 votes
1 answer
1
gatecse asked Aug 9, 2020
185 views
What is the value of the postfix expression $8 \ 7 \ 2 \ 4 \ + \ – \ *?$:
1 votes
1 votes
1 answer
2
1 votes
1 votes
1 answer
3
gatecse asked Aug 9, 2020
278 views
The data structures most suitable to do an inorder and level order traversals of a binary tree respectively areStack and QueueQueue and StackStack and StackQueue and Queu...