Convert following infix expression to the prefix expression.
a - b + c * (d / e - (f + g))
Answer Posted / tadveer verma
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
+-ab*c-/de+fg
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
Which time complexity is best?
Is quicksort divide and conquer?
What are the major data structures used in the network data model?
Check if duplicates exist in an array of N which has range 1 to N.
Can we search the data in a linked list?
What are the drawbacks of array implementation of queue?
Differentiate between priorityqueue and treeset.
What does it mean to sort an array?
Is arraylist a list?
What is difference between data type and variable?
What is complete binary tree and almost complete binary tree?
What do you mean by balance factor of a node in avl tree?
What is entryset method in map?
Which is the parent class of enumset class?
Can arraylist be null?