Answer:
I am not sure I am understanding plz more context
Explanation:
Answer:
25 V
Explanation:
It is convenient to use Kirchoff's current law (KCL), which tells you the sum of currents into a node is zero. The node of interest is the top left node.
The currents into it are ...
20 mA + (-5 -Vo)/(2kΩ) -(Vo/(5kΩ)) = 0
20 mA -2.5 mA = Vo(1/(2kΩ) +1/(5kΩ)) . . . . add the opposite of Vo terms
(17.5 mA)(10/7 kΩ) = Vo = 25 . . . volts . . . . divide by the coefficient of Vo
_____
You will notice that the equation resolves to what you would get if you drew the Norton equivalent of the voltage source with its 2k impedance. You have two current sources, one of +20 mA, and one of -2.5 mA supplying current to a load of 2k║5k = (10/7)kΩ. KCL tells you the total current into the node is equal to the current through that load (out of the node).
Answer with Explanation:
The capillary rise in 2 parallel plates immersed in a liquid is given by the formula

where
is the surface tension of the liquid
is the contact angle of the liquid
is density of liquid
'g' is acceleratioj due to gravity
'd' is seperation between thje plates
Part a) When the liquid is water:
For water and glass we have
Applying the values we get

Part b) When the liquid is mercury:
For mercury and glass we have
Applying the values we get

The negative sign indicates that there is depression in mercury in the tube.
Answer:
A Only
Explanation:
Reinforcements, as the name suggests, are used to enhance the mechanical properties of a plastic. Finely divided silica, carbon black, talc, mica, and calcium carbonate, as well as short fibres of a variety of materials, can be incorporated as particulate fillers.
Answer:
#include <iostream>
#include <string>
#include "user.h"
#include "password.h"
using namespace Authenticate;
using namespace std;
int main()
{
inputUserName();
inputPassword();
cout << "Your username is " << getUserName() <<
" and your password is: " <<
getPassword() << endl;
return 0;
}
user.h:
#ifndef USER_H
#define USER_H
#include <string>
using namespace std;
namespace Authenticate
{
namespace
{
bool isvalid();
}
void inputUserName();
string getUserName();
}
#endif
user.cpp:
#include <iostream>
#include "user.h"
namespace Authenticate
{
string username="";
namespace
{
bool isvalid()
{
if(username.length() == 8)
return true;
else
return false;
}
}
void inputUserName(){
do
{
cout << "Enter your username (8 letters only)" << endl;
cin >> username;
}
while(!isvalid());
}
string getUserName()
{
return username;
}
}
password.h:
#ifndef PASSWORD_h
#define PASSWORD_h
#include <string>
using namespace std;
namespace Authenticate
{
namespace
{
bool isValid();
}
void inputPassword();
string getPassword();
}
#endif
password.cpp:
#include <iostream>
#include <string>
using namespace std;
namespace Authenticate
{
string password="";
namespace
{
bool isValid()
{
if(password.length() >= 8)
{
for(int i=0; i<password.length(); i++)
if(password[i] >= '0' && password[i] <= '9')
return true;
return false;
}
else
return false;
}
}
void inputPassword(){
do
{
cout << "Enter your password (at least 8 characters " <<
"and at leat one non-letter)" << endl;
cin >> password;
}
while(!isValid());
}
string getPassword()
{
return password;
}
}