Evaluate the following prefix expression " ++ 26 + - 1324"
Answer Posted / rushi
I see multiple answers to this depending on how you interpret 1324 into 3 numbers i.e. either 1 3 24, 13 2 4, 1 32 4, etc.
1. ++ 26 + - 1324
+(+26) + - 1324 -> +26 becomes 8
+8+(-13 2)4 -> 13 -2 = 11
+8(+11 4) -> 11 +4 = 15
+8 15
= 23
2.++ 26 + - 1324
+(+26) + - 1324 -> +26 becomes 8
+8+(-1 3)24 -> 1 -3 = '-'2
+8(+(-2) 24) -> 24 + -2 = 24 -2 = 22
+8 22
= 30
3.++ 26 + - 1324
+(+26) + - 1324 -> +26 becomes 8
+8+(-1 32)4 -> 1 -32 = '-'31
+8(+(-31) 24) -> -31 + 24 = -7
+8 '-7'
= 1
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
What is adt in data structure with example?
How do you define a set?
Tell me is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is an object array?
What member function places a new node at the end of the linked list?
What is stack algorithm?
What do you mean by tree edge?
Can we define the size of arraylist?
What is breadth first tree?
What is an ordered map?
Explain what is a spanning tree?
Is hashmap synchronized?
What are the complexity of binary search?
Why hashtable is faster than arraylist?
What is complete binary tree and almost complete binary tree?