Business plan, a good strategy to help pin point the house best fetchers
Given acceleration a = 5-3t, and its velocity is 7 at time t = 2, the value of s2 - s1 = 7
<h3>How to solve for the value of s2 - s1</h3>
We have
= 


v2 = 5x2 - 3x2 + c
= 10-6+c
= 4+c

S2 - S1

= 6 + 6+c - 2+3+c
12+c-5+c = 0
7 = c
Read more on acceleration here: brainly.com/question/605631
Answer:
Qx = 9.10
m³/s
Explanation:
given data
diameter = 85 mm
length = 2 m
depth = 9mm
N = 60 rev/min
pressure p = 11 ×
Pa
viscosity n = 100 Pas
angle = 18°
so Qd will be
Qd = 0.5 × π² ×D²×dc × sinA × cosA ..............1
put here value and we get
Qd = 0.5 × π² × ( 85
)²× 9
× sin18 × cos18
Qd = 94.305 ×
m³/s
and
Qb = p × π × D × dc³ × sin²A ÷ 12 × n × L ............2
Qb = 11 ×
× π × 85
× ( 9
)³ × sin²18 ÷ 12 × 100 × 2
Qb = 85.2 ×
m³/s
so here
volume flow rate Qx = Qd - Qb ..............3
Qx = 94.305 ×
- 85.2 ×
Qx = 9.10
m³/s
Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.