+ 2

(5*6)/4+2 how to solve?????

5th Nov 2016, 5:59 PM
Akshay_U
Akshay_U - avatar
27 Respostas
+ 32
Firstly solve what is inside the brackets. (30) Divide by 4. And then add 2
5th Nov 2016, 6:06 PM
Remmae
Remmae - avatar
+ 7
1- operations inside parentheses or brackets 2- division or multiplication operations 3- addition or subtraction operations
5th Nov 2016, 6:11 PM
horror.fox
horror.fox - avatar
+ 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
6th Nov 2016, 9:48 AM
Sandeep Balachandran
Sandeep Balachandran - avatar
+ 5
((5*6)/4)+2 ((30)/4)+2 (7.5)+2 9.5
7th Nov 2016, 9:26 AM
Naufal Muntaaza Waliy Hibatullah
Naufal Muntaaza Waliy Hibatullah - avatar
+ 4
add to horror.fox - 4. logical
5th Nov 2016, 7:05 PM
Вадим Глушков
Вадим Глушков - avatar
+ 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
6th Nov 2016, 11:26 AM
Kamran
Kamran - avatar
+ 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
6th Nov 2016, 11:28 AM
Kamran
Kamran - avatar
+ 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
12th Nov 2016, 2:32 PM
Sandeep Balachandran
Sandeep Balachandran - avatar
+ 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.
5th Nov 2016, 10:42 PM
Azeem Sarwar
Azeem Sarwar - avatar
+ 2
why should we solve the first bracket? @Remmae
6th Nov 2016, 4:20 AM
umesh
umesh - avatar
+ 2
because why we use bracket
7th Nov 2016, 9:26 AM
Naufal Muntaaza Waliy Hibatullah
Naufal Muntaaza Waliy Hibatullah - avatar
+ 2
<b> Use presidence based upon the operators of said language.</b>
13th Nov 2016, 10:50 PM
Vincent Kordiak
Vincent Kordiak - avatar
+ 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
18th Nov 2016, 8:39 AM
Safwan Usaid Lubdhak
Safwan Usaid Lubdhak - avatar
+ 1
Follow BODMAS B - Brackets O - oder of operation (left to right) D- Division M - Multiplication A - Addition S- Subtraction
7th Nov 2016, 4:46 PM
Dinesh Devaki
Dinesh Devaki - avatar
+ 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
8th Nov 2016, 5:06 AM
Teboho Matjele Alfred
Teboho Matjele Alfred - avatar
+ 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)
11th Nov 2016, 10:11 PM
Marcell Juhasz
+ 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 :)
20th Nov 2016, 5:00 AM
sickeee
sickeee - avatar
0
Which one is the actual answer
7th Nov 2016, 3:56 PM
Syed Wajahat Ali Shah
Syed Wajahat Ali Shah - avatar
0
pls give me your no
9th Nov 2016, 5:56 AM
gulam malik
0
9.5 @syed wahajat
9th Nov 2016, 8:56 AM
Naufal Muntaaza Waliy Hibatullah
Naufal Muntaaza Waliy Hibatullah - avatar