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
What are the types of sorting?
Is array a collection?
How remove all from arraylist?
What is the complexity of arraylist?
What are linear and non linear data structures?
Describe the complexity of Quick Sort
Differentiate between arraylist and vector.
What are the different types of collections?
In what data structures are pointers applied?
Explain heapsort. What is its complexity?
What is the difference between data type and data structure?
Tell me the difference between the character array and a string.
Is hashmap fail safe?
What is quick sort?
Is arraylist a class?