Answer:Vb=-6i-(-0.1ωab+8)j m/s
Explanation:
Va=V0+Va0
Va=V0+(ra0 x ωao)
ω=Angular velocity of link A0
Using r0a=0.1m;
Va=V0+(0.1i x ω0a K)
Va=0
ixk=j
Va=0+0.1ω0aj
Calculating te velocity of using te equation below
Vb=Va+Vba
Vb=Va+ωab x rba
ωab=40rad/s
rab=-0.21i+0.15j
Va=0.1ω0aj
Vb=Va+ωabxrba
Vb=0.1ω0aj+40k x -(0.21i+0.15j)
Vb=0.1ω0aj-8j-6i
Vb=-6i-(-0.1ωab+8)j m/s
Answer:
Computer programming for three dimensional designs
Explanation:
- Doll is not a 2D creation . it's a 3D creation
- So on creating the design on 3D scale it's more effective to determine what can be added more.
Answer:
russ ruwabsd ljabnlndszdnjndfsmsdf,bsd
Explanation:
Answer:
speed by mass attain is 55.86 m/s
Explanation:
given data
glucose = 10 g
mass = 100 kg
to find out
speed by mass attain
solution
we know glucose have 180 g molecular weight and
that 1 g glucose produce energy = 2816/180 × 10³ J
so here 10 g of glucose produce energy = 1.56 ×
J
so here energy release = 1/2 × mv²
1.56 ×
= 1/2 × (100)v²
v² = 3.12 × 10³
and v = 55.86 m/s
so speed by mass attain is 55.86 m/s
Answer:
The statement can be written as
int result = cube(4);
Explanation:
A function is a block of reusable codes to perform some tasks. For example, the function in the question is to calculate the cube of a number.
A function can also operate on one or more input value (argument) and return a result. The <em>cube </em>function in the question accept one input value through its parameter <em>number </em>and the <em>number</em> will be multiplied by itself twice and return the result.
To call a function, just simply write the function name followed with parenthesis (e.g. <em>cube()</em>). Within the parenthesis, we can include zero or one or more than one values as argument(s) (e.g. <em>cube(4)</em>).
We can then use the "=" operator to assign the return output of the function to a variable (e.g. <em>int result = cube(4)</em>)