Redirected
recategorized by
1,221 views
2 votes
2 votes

My doubt :
 

What should we consider ^ operator as Bitwise XOR  ? or Exponentiation

 

recategorized by

2 Answers

3 votes
3 votes
|6|2|3|  +
|6|5|  -             (2+3=5)
|1|                   (6-5=1)
|1|3|8|2| /        
|1|3|4|+          (8/2=4)
|1|7|*             (3+4=7)
|7|                 (1*7=7)

|7|3|^           (7^3 = 343)
|343|3|+
|346|

Therefore A=346

Y= 2*346+16 = 708

answer should be 26.60
0 votes
0 votes
in C and most of the programming languages ^ is bitwise xor.
For exponentiation you can use ** in python3, math.pow in C.

But in this question ^ is to be interpreted as a maathematical operator rather than programming construct

Related questions

2 votes
2 votes
0 answers
1
2 votes
2 votes
3 answers
2
Tushar Shinde asked Jan 28, 2016
3,638 views
Consider the following expression with infix notationA * B - (C + D) * (E / 5) ^ F What is the maximum height of the operator stack during conversion from infix to postfi...
1 votes
1 votes
2 answers
3
smartmeet asked Jan 18, 2017
1,003 views
What we can do if the unary operator comes in infix notation while converting it into postfix/prefix notations? For example, this $a = -b+c*d/e+f↑g↑h-i*j$