Convert following infix expression to the prefix expression.
a - b + c * (d / e - (f + g))
Answer Posted / lucky
a-b+c*(d/e-(f+g))
a-b+c*(d/e-+fg)
a-b+c*-d/e+fg
a-b+c*-/de+fg
a-b+*c-/de+fg
+a-b*c-/de+fg
+-ab*c-/de+fg
| Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
Can hashmap be sorted?
What is the use of data structure in real life?
Why is sorting necessary?
Name few concurrent collection classes?
What is the Role of push() and pop() method?
What is ds tree?
Is list same as array?
How many types of sorting algorithms are there?
How to search binary in a sorted array?
What is the difference between static and dynamic data?
Can you override methods of arraylist?
What does arrays tostring do?
What are AVL trees?
How does arraylist size work?
What is the time complexity of hashmap get () and put () method?