It's c. all of them added up is 41/24 which converts to 1 17/24.
EXPLANATION:
-To formulate an equation, you must first know what data the exercise gives us to locate them correctly.
data:
-6 that must be added to a number.
-four times a number that is equal to 4x
-a result that is equal to 50
Now with these data we formulate the equation:

if we solve the equation we have:
Answer:
2x^8y^12 sqr root of 5y
Step-by-step explanation:
Answer:
The minimum number of assignment statements needed is 5
Step-by-step explanation:
To write the algorithm, we apply the strategy of interchanging the values of variables in the assignment statements.
Assume "tmp" is the new variable, let assign tmp to w
The algorithm is:
Procedure exchange (w,x,y,z: integers)
tmp := w
w := x
x := y
y := z
z := tmp
return (w,x,y,z)
end
From the algorithm, it is obvious that there will be a minimum of 5 assignment statements needed.
Answer:
1/3(n+1)³
Step-by-step explanation:
1x2+2x3+3x4+4x5+...= 1²+1+2²+2+3²+3+...+n²+n+1=
=(1²+2²+3²+...+n²)+(1+2+3+...+n+1)=
=1/6n(n+1)(2n+1)+1/2(n+1)(1+n+1)=
=1/6(n+1)(n(2n+1)+3(n+2))=
=1/6(n+1)(2n²+4n+2)=
=1/6(n+1)*2(n+1)²=
=1/3(n+1)³