Answer:
ideal fluid follow Newtonian law
that is, shear stress is directly proportional to rate change of shear strain.
watch handwritten explanation
Answer:
Mechanical property
Explanation:
MECHANICAL PROPERTIES can be defined as the ability of a metal or material to remain undamaged after different type of forces has been applied or used on them because forces or loads are often applied to metal, material or physical properties which is why MECHANICAL PROPERTIES enables us to know the strength , toughness as well as the hardness of metal and the way this metal perform or react when different forces are applied on them.
Lastly any metal, material or physical properties that has the strength , hardness and resistance to withstand or remain unaffected despite the loads or forces use on them is an example of MECHANICAL PROPERTIES.
Therefore Resistance to impact is an example of a(n) MECHANICAL PROPERTIES.
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;
}
The correct statement is: a higher than a normal voltage drop could indicate high resistance. Technician B is correct.
<h3>Ohm's law</h3>
Ohm's law states that the current flowing through a metallic conductor is directly proportional to the voltage provided all physical conditions are constant. Mathematically, it is expressed as
V = IR
Where
V is the potential difference
I is the current
R is the resistance
<h3>Technician A</h3>
High resistance causes an increase in current flow
V = IR
Divide both side by I
R = V / I
Thus, technician A is wrong as high resistance suggest low current flow
<h3>Technician B</h3>
Higher than normal voltage drop could indicate high resistance
V = IR
Thus, technician B is correct as high voltage indicates high resistance
<h3>Conclusion </h3>
From the above illustration, we can see that technician B is correct
Learn more about Ohm's law:
brainly.com/question/796939