Answer: d) property tests
Explanation: Product service life can be referred as the life that define the service that can be provided by the product manufactured.The service life contains the testing and calculation of the product's quality, reliability, maintenance factor etc. These factors are known as the property of the product and so is calculated by the property test. Therefore option (d) is the correct option because other option does not define the factors for defining the product service life.
Answer: information security managers
Explanation:
Information security managers is an individual in charge of making sure that company's or organization's equipments such as computers, network, data etc are protected against security breach, computer viruses, hackers, etc. The person also keep assets in confidentiality, integrity, and makes them available when needed. Failure to do this might lead to the loss of confidential data, security breach, cyber crimes, etc which will cause a serious set back in a company's operations especially in the information and technology department, it might also lead to fine sanctions from regulatory body for the failure to protect data, it will also lead to financial loss,etc.
Answer: Rc = 400 Ω and Rb = 57.2 kΩ
Explanation:
Given that;
VCE = 5V
VCC = 15 V
iC = 25 mA
β = 100
VD₀ = 0.7 V
taking a look at the image; at loop 1
-VCC + (i × Rc) + VCE = 0
we substitute
-15 + ( 25 × Rc) + 5 = 0
25Rc = 10
Rc = 10 / 25
Rc = 0.4 k
Rc = 0.4 × 1000
Rc = 400 Ω
iC = βib
25mA = 100(ib)
ib = 25 mA / 100
ib = 0.25 mA
ib = 0.25 × 1000
ib = 250 μAmp
Now at Loop 2
-Vcc + (ib×Rb) + VD₀ = 0
-15 (250 × Rb) + 0.7 = 0
250Rb = 15 - 0.7
250Rb = 14.3
Rb = 14.3 / 250
Rb = 0.0572 μ
Rb = 0.0572 × 1000
Rb = 57.2 kΩ
Therefore Rc = 400 Ω and Rb = 57.2 kΩ
Answer:
#include <iostream>
using namespace std;
int main()
{
int inputNumber ;
cout << "Enter an interstate highway number:";
cin >> inputNumber ;
if(inputNumber<=0 || inputNumber >= 1000)
cout << inputNumber << " is not a valid interstate highway number" << endl ;
else{
if(inputNumber > 99){
cout << "I-"<<inputNumber<< " is auxiliary, ";
int temp = inputNumber % 100 ;
cout <<"serving I-"<<temp<<", ";
if(temp%2==0){
cout << "going east/west." << endl;
}
else{
cout << "going north/south." << endl;
}
}
else{
cout << "I-"<<inputNumber<< " is primary, ";
if(inputNumber%2==0){
cout << "going east/west." << endl;
}
else{
cout << "going north/south." << endl;
}
}
}
return 0;
}
Explanation:
- Check if input number is greater than 99, then display that the input number is auxiliary.
-
Check if remainder of input number/2 is equal to 0, then display that going east/west.
Answer:
a regular sized microwave will use 850 to 1800 watts depending on the model. An average modern microwave will use around 1200 watts.
Explanation: