Answer:
a)-True
Hope this helps even tho theres no school right now
Answer:
Bluray
DVD
CD
Explanation:
Blu ray can hold 25gb per layer
Dvd can hold 4.7GB on a single layer
Cd can hold around 737 mb
Also, dvds can go up to 2 layers
Blu ray can go up to 4
Answer:
F = 0.0022N
Explanation:
Given:
Surface area (A) = 4,000mm² = 0.004m²
Viscosity = µ = 0.55 N.s/m²
u = (5y-0.5y²) mm/s
Assume y = 4
Computation:
F/A = µ(du/dy)
F = µA(du/dy)
F = µA[(d/dy)(5y-0.5y²)]
F = (0.55)(0.004)[(5-1(4))]
F = 0.0022N
Answer:
metals, composite, ceramics and polymers.
Explanation:
The four categories of engineering materials used in manufacturing are metals, composite, ceramics and polymers.
i) Metals: Metals are solids made up of atoms held by matrix of electrons. They are good conductors of heat and electricity, ductile and strong.
ii) Composite: This is a combination of two or more materials. They have high strength to weight ratio, stiff, low conductivity. E.g are wood, concrete.
iii) Ceramics: They are inorganic, non-metallic crystalline compounds with high hardness and strength as well as poor conductors of electricity and heat.
iv) Polymers: They have low weight and are poor conductors of electricity and heat
Answer:
See explaination
Explanation:
#include <iostream>
#include<string.h>
using namespace std;
bool isPalindrome(string str, int lower, int upper){
if(str.length() == 0 || lower>=upper){
return true;
}
else{
if(str.at(lower) == str.at(upper)){
return isPalindrome(str,lower+1,upper-1);
}
else{
return false;
}
}
}
int main(){
string input;
cout<<"Enter string: ";
cin>>input;
if(isPalindrome(input,0,input.length()-1)){
cout<<input<<" is a palindrome"<<endl;
}
else{
cout<<input<<" is NOT a palindrome"<<endl;
}
return 0;
}