B=-2 or b=0 is the awnser
Answer:
Step-by-step explanation:
Answer:
Recursive algorithms call itself with simpler or smaller input values. They can be used to solve large problems by using the solutions to minor parts of the problem, these minor problems are then further broken down to solvable cases.
Given the input as a sequence;
max(
if
return 
else

if
>
return 
else return 
Answer:
30, 85, 95, 150
Step-by-step explanation:
The angles of a quadrilateral add to 360
Let x be the smallest angle
x+55
x+65
x+120 are the other three angles
Add the 4 angles together and they sum to 360
x+x+55 x+65+ x+120 = 360
Combine like terms
4x+240 = 360
Subtract 240 from each side
4x+240-240 = 360 -240
4x = 120
Divide by 4
4x/4 = 120/4
x = 30
x+55= 30+55 = 85
x+65 = 30+65 = 95
x+120 = 30+120 = 150