+ 2
(5*6)/4+2 how to solve?????
27 Respostas
+ 32
Firstly solve what is inside the brackets. (30) Divide by 4. And then add 2
+ 7
1- operations inside parentheses or brackets 2- division or multiplication operations 3- addition or subtraction operations
+ 7
just like remme said first we need to do the math inside the paranthesis It is based on the priority rule..
priority 1: inside bracket
priority 2:division or multiplication (depends on problem)
priority 3: addition or subtraction
this is the common rule to perform a mathematical query
+ 5
((5*6)/4)+2
((30)/4)+2
(7.5)+2
9.5
+ 4
add to horror.fox - 4. logical
+ 3
The way to solve this is to use the BIDMAS rule. You start with the first letter and work through it.
B - Brackets
I - Indices
D- Division
M - Multiplication
A - Addition
S- Subtraction
+ 3
The way to solve this is to use the BIDMAS rule. You start with the first letter and work through it.
B - Brackets
I - Indices
D- Division
M - Multiplication
A - Addition
S- Subtraction
@Umesh
+ 3
answer is 9.5 if you do it in a paper. answer may change if you do it inside code because of the datatype you are initialised those variable with
+ 2
Solve prenthesis part first and then divide by 4 ...because it is an integer division so we got 7 instead of 7.5 (in integer division decimal portion is truncated)
and
finally we added it to 2 so it results 9.
+ 2
why should we solve the first bracket? @Remmae
+ 2
because why we use bracket
+ 2
<b> Use presidence based upon the operators of said language.</b>
+ 2
The way to solve this is to use the BIDMAS rule. You start with the first letter and work through it.
B - Brackets
I - Indices
D- Division
M - Multiplication
A - Addition
S- Subtraction
ok ??
@umesh
+ 1
Follow BODMAS
B - Brackets
O - oder of operation (left to right)
D- Division
M - Multiplication
A - Addition
S- Subtraction
+ 1
Always remember the BODMAS rule in mathematics for questions like this.
B-Brackets (5*6)
O-Open brackets (Times brackets with +1(30)..)
D-Divide ( by 4)
M-Multiplication (Values outside brackets if available )
A-Addition
S-Subtraction
+ 1
Actually, the correct answer is NOT 9.5.
1. 6*5 = 30
2. 30/4 =???
Result of int/int is also an integer, so 30/4 = 7.
7.5 is not rounded to 8, the division operator applied on two integers only keeps the number before the decimal dot. If you converts 7.999965 to integer, the result will be 7. Not (7.0).
If you would like to get 9.5 (instead of 9 which is the correct answer), you have to convert at least one of the operands to float or double.
All of these expression results 9.5:
(6*5)/(float)4 + 2
(double)(6*5)/4 + 2
(6.0*5.0)/4.0 + 2.0 (I recommend this)
+ 1
perform 5*6 first answer is 30 then divide by 4 answer is 7.5 then add by 2 answer is 9.5 hope it helps :)
0
Which one is the actual answer
0
pls give me your no
0
9.5 @syed wahajat