Answer:
Explanation:
The pressure drop is directly proportional to the length of the pipe. Then, the new pressure drop is two time the previous one.
Answer:
//Program was implemented using C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
unsigned int second_a(unsigned int n)
{
int r,sum=0,temp;
int first;
for(int i= 1; I<=n; i++)
{
first = n;
//Check if first digit is 3
// Remove last digit from number till only one digit is left
while(first >= 10)
{
first = first / 10;
}
if(first == 3) // if first digit is 3
{
//Check if n is palindrome
temp=n; // save the value of n in a temporary Variable
while(n>0)
{
r=n%10; //getting remainder
sum=(sum*10)+r;
n=n/10;
}
if(temp==sum)
cout<<n<<" is a palindrome";
else
cout<<n<<" is not a palindrome";
}
}
}
Explanation:
The above code segments is a functional program that checks if a number that starts with digit 3 is Palindromic or not.
The program was coded using C++ programming language.
The main method of the program is omitted.
Comments were used for explanatory purpose.
Answer:
Only Technician B is right.
Explanation:
The cylindrical braking system for a car works through the mode of pressure transmission, that is, the pressure applied to the brake pedals, is transmitted to the brake pad through the cylindrical piston.
Pressure applied on the pedal, P(pedal) = P(pad)
And the Pressure is the applied force/area for either pad or pedal. That is, P(pad) = Force(pad)/A(pad) & P(pedal) = F(pedal)/A(pedal)
If the area of piston increases, A(pad) increases and the P(pad) drops, Meaning, the pressure transmitted to the pad reduces. And for most cars, there's a pressure limit for the braking system to work.
If the A(pad) increases, P(pad) decreases and the braking force applied has to increase, to counter balance the dropping pressure and raise it.
This whole setup does not depend on the length of the braking lines; it only depends on the applied force and cross sectional Area (size) of the piston.
Answer:
Numbers 4, 6, & 7 are correct
Explanation:
4- this allows the op amp to have zero voltage so that maximum voltage is transferred to output load.
6- this ensures that op amp doesn't cause loading in the original circuit, high input impedance would not deter the circuit from pulling current from it.
7- high difference between upper and lower frequencies.
Answer:
The Space Needle is a cut away with minimal residual deflection due to load transfer.