Answer: THERE IS NO GRAVITY IN SPACE SO ROCKS SPIN
Explanation:
Answer:
resistance = 2.52 ohms
Explanation:
from the formula
V =IR
Voltage = (current)(resistance)
Resistance =
R=
R= 2.52 ohms
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer:
slenderness ratio = 147.8
buckling load = 13.62 kips
Explanation:
Given data:
outside diameter is 3.50 inc
wall thickness 0.30 inc
length of column is 14 ft
E = 10,000 ksi
moment of inertia 

Area 


r = 1.136 in
slenderness ratio 

buckling load 


Answer:
V=L(di/dt) where i is current, V=0.208
Explanation:
using expression iL(t)=5e-2t+3te-2t-2 and L=0.05H(50/1000)
V=0.05*d(5e-2t+3te-2t-2)/dt
since there is no power of e, I'll assume the power to be 1
V=0.05*(-2+3e-2)
at t=0.25
V=0.15e-0.2
V=0.208