Answer:
b)Poly crystalline and amorphous materials with small diameter
Explanation:
Fibers have high length to diameter ratio and also have high strength.Generally length of fibers is very high and diameter is very low as compare to length.
Mostly fibers is used to transfer data from one place to another place with help of fiber optical cables.Fiber optic cables is used in telecommunication.In these cables data covert in to the electric single and reach at define location and after data is decode and covert from electric single in to original data.
Fibers poly crystalline and amorphous materials with small diameter.
Answer:
<em>v</em><em> </em>= T/(2R)
Explanation:
Given
R = radius
T = strength
From Biot - Savart Law
d<em>v</em> = (T/4π)* (d<em>l</em> x <em>r</em>)/r³
Velocity induced at center
<em>v </em>= ∫ (T/4π)* (d<em>l</em> x <em>r</em>)/r³
⇒ <em>v </em>= ∫ (T/4π)* (d<em>l</em> x <em>R</em>)/R³ (<em>k</em>) <em>k</em><em>:</em> unit vector perpendicular to plane of loop
⇒ <em>v </em>= (T/4π)(1/R²) ∫ dl
If l ∈ (0, 2πR)
⇒ <em>v </em>= (T/4π)(1/R²)(2πR) (<em>k</em>) ⇒ <em>v </em>= T/(2R) (<em>k</em>)
Answer:
7,217*10^28 atoms/m^3
Explanation:
- Metal: Vanadium
- Density: 6.1 g/cm^3
- Molecuar weight: 50,9 g/mol
The Avogadro's Number, 6,022*10^23, is the number of atoms in one mole of any substance. To calculate the number of atoms in one cubic meter of vanadium we write:
1m^3*(100^3 cm^3/1 m^3)*(6,1 g/1 cm^3)*(1 mol/50,9g)*(6,022*10^23 atoms/1 mol)=7,217*10^28 atoms
Therefore, for vanadium we have 7,217*10^28 atoms/m^3
Answer:
#include <iostream>
#include <string>
using namespace std;
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
if (tolower(str[i]) != tolower(str[length - 1 - i]))
return false;
}
return true;
}
int main()
{
string s[6] = {"madam", "abba", "22", "67876", "444244", "trymeuemyrt"};
int i;
for(i=0; i<6; i++)
{
//Testing function
if(isPalindrome(s[i]))
{
cout << "\n " << s[i] << " is a palindrome... \n";
}
else
{
cout << "\n " << s[i] << " is not a palindrome... \n";
}
}
return 0;
}