1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Lelechka [254]
2 years ago
6

Technician A says test lights are great for performing simple tests. Technician B says you can use a test light to check SRS cir

cuits and computer circuits. Who is correct
Engineering
1 answer:
adoni [48]2 years ago
5 0

The technician that is correct about either testing lights for simple tests or to check SRS Circuits is; Technician A.

<h3>Which Technician is Correct?</h3>

First of all it is pertinent to note that test lights are generally small bulbs that are turned on by the voltage and current flowing through the circuit in analog circuits.

Now, the  two values ​​of voltage and current are high and sufficient to light up the bulb. However, in digital circuits, the current is very small in the order of milliamps, and as a result there is not enough power to turn on the lights.

Thus, we can conclude that Technician A is correct.

Read more about Correct Technician at; brainly.com/question/14449935

You might be interested in
A 15 ft high vertical wall retains an overconsolidated soil where OCR-1.5, c'-: O, ф , --33°, and 1 1 5.0 lb/ft3.
Tamiku [17]

Answer:

magnitude of thrust uis  11061.65 lb/ft

location is 5 ft from bottom

Explanation:

Given data:

Height of vertical wall is 15 ft

OCR  is 1.5

\phi = 33^o

saturated uit weight\gamma_{sat} = 115.0 lb/ft^3

coeeficent of earth pressure K_o

K_o = 1 -sin \phi

        = 1 - sin 33 = 0.455

for over consolidate

K_{con} = K_o \times OCR

            = 0.455 \times 1.5 = 0.683

Pressure at bottom of wall is

P =K_{con} \times (\gamma_{sat} - \gamma_{w}) + \gamma_w \times H

   = 0.683 \times (115 - 62.4) \times 15 + 62.4 \times 15

P = 1474.88 lb/ft^3

Magnitude pf thrust is

F= \frac{1}{2} PH

   =\frac{1}{2} 1474.88\times 15 = 11061.65 lb/ft

the location must H/3 from bottom so

x = \frac{15}{3} = 5 ft

5 0
4 years ago
An amplifier with 40 dB of small-signal, open-circuit voltage gain, an input resistance of 1 MO, and an output resistance of 100
Vanyuwa [196]

convert 40db to standard gain

AL=10^40/20=100

calculate total voltage gain

=AL×RL/RL+Ri

=83.33

38.41 DB

calculate power

Pi=Vi^2/Ri Po=Vo^2/RL

power gain= Po/Pi

=13.90×10^6

3 0
3 years ago
An organization is struggling to differentiate threats from normal traffic and access to systems. A security engineer has been a
AnnZ [28]

Answer:

Web application Firewall (WAF)

Explanation:

The Web application Firewall (WAF) will be recommended. This will enormously help any organisation that is having a struggle of differentiating threats from normal traffic and access to systems.

WAF is also going to It aggregate data and provide metrics that will assist in identifying malicious actors. Another vital function of WAF will be to block unwanted web traffic from accessing your site. It will protect against hacks, brute force attacks, DDoS attacks, cross-site scripting, SQL injection, and zero-day exploits.

8 0
4 years ago
It is possible to maintain a pressure of 10 kPa in a condenser that is being cooled by river water entering at 20 °C?
vovangra [49]

Answer:

Yes, it is possible to maintain a pressure of 10 kPa in a condenser that is being cooled by river water that is entering at 20 °C because this temperature (20 °C) of the external cooling water is less than the saturation temperature of steam which is which is 45.81 °C, and heated by a boiler; as a result of this condition, coupled with the assumption that the turbine, pump, and interconnecting tube are adiabatic, and the condenser exchanges its heat with the external cooling river water, it possible to maintain a pressure of 10 kPa.

5 0
4 years ago
1. The system must be able to manage multiple students (max of 15) and their grades for assignments from three different assignm
mr_godi [17]

Answer:

#include<iostream>

#include<string.h>

using namespace std;

class gradebook;

class student

{

friend class gradebook;

char name[20]; // std name

int homework_grades[6], quiz_grades[6], exam_grades[4]; //grades array

float homework_avg, quiz_avg, exam_avg, final_avg;

};

class gradebook

{

student list[16];

public:

char gb_name[20]; // gradebook name

int max, total;

// Constructor

gradebook()

{

strcpy(gb_name,"noname");

max = 5;

total = 0;

for(int i=1;i<=15;i++)

{

strcpy(list[i].name,"noname");

for(int j=1;j<=5;j++)

{

list[i].homework_grades[j] = -1;

list[i].quiz_grades[j] = -1;

}

list[i].exam_grades[1] = list[i].exam_grades[2] = list[i].exam_grades[3] = -1;

}

}

// Member functions

void display_std_name();

void display_grades(int, int);

int add_std(char *new_name);

int remove(int);

//int ch_grade(int, int);

};

// Define all functions

// Remove a student from list and adjust remaining

int gradebook::remove(int std_id)

{

if(total==0 || std_id>total || std_id<=0)

return 0;

if(std_id==total)

{

cout<<"\n“"<<list[std_id].name<<"” has been successfully removed! (New class size: 2)";

strcpy(list[total--].name,"noname");

return 1;

}

cout<<"\n“"<<list[std_id].name<<"” has been successfully removed! (New class size: 2)";

for(int i=std_id; i<total; i++)

{

list[i]=list[i+1];

}

total--;

return 1;

}

// Add student to gradebook

int gradebook::add_std(char *new_name)

{

if(total<15)

{

strcpy(list[++total].name, new_name);

return 1;

}

return 0;

}

// Display student name list

void gradebook::display_std_name()

{

for(int i=1;i<=total;i++)

{

cout<<"\n"<<i<<" "<<list[i].name;

}

}

/* Display grades of students

// (grade_id, student_number_in_list)

homework(1), quiz(2), exam(3)

*/

void gradebook::display_grades(int g_id, int std_id)

{

int i;

if(std_id<=total)

{

if(g_id==1)

{

for(i=1;i<6;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].homework_grades[i]==-1) cout<<"<ungraded>";

}

}

else if(g_id==2)

{

for(i=1;i<6;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].quiz_grades[i]==-1) cout<<"<ungraded>";

}

}

else if(g_id==3)

{

for(i=1;i<4;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].exam_grades[i]==-1) cout<<"<ungraded>";

}

}

}

else

cout<<"\nNo such std exists";

}

/****************************** MAIN ****************************/

int main()

{

int main_choice, grade_choice, std_id, new_grade;

char g_name[20], s_name[20];

float a,b,c;

gradebook g;

do

{

cout<<"\n\n-=| MAIN MENU |=-";

cout<<"\n1. Add a student\n2. Remove a student\n3. Change a student’s grade\n4. Change group weights\n5. Change the gradebook name\n6. Display class averages\n7. Display full report\n0. QUIT\n";

cout<<"\nEnter an action: ";

cin>>main_choice;

switch(main_choice)

{

case 0:

break;

case 1:

cout<<"\n-=| ADDING STUDENT |=-";

cout<<"\nPlease enter the student’s name: ";

cin>>s_name;

if(g.add_std(s_name))

cout<<"\n"<<s_name<<" was successfully added to the gradebook!";

else

cout<<"\nStudents cannot be added because the gradebook is full!";

break;

case 2:

cout<<"\n-=| REMOVING STUDENT |=-";

if(g.total!=0)

{

g.display_std_name();

cout<<"\n Enter student to remove: ";

cin>>std_id;

if(!g.remove(std_id))

cout<<"\nCannot remove students";

}

else

cout<<"\nStudents cannot be added because the gradebook is full!";

break;

case 3:

cout<<"\n-=| CHANGING GRADE |=-\n1. Change a homework grade\n2. Change a quiz grade\n3. Change an exam grade";

cout<<"\nWhat type of grade would you like to change: ";

cin>>grade_choice;

g.display_std_name();

cout<<"\nWhich student’s grade would you like to change? ";

cin>>std_id;

//ch_grade(grade_choice, std_id);

g.display_grades(grade_choice, std_id);

break;

/*

case 4:

cout<<"\n-=| CHANGING WEIGHTS |=-";

while(1)

{

cout<<"\nEnter the weights, separated by spaces, in the order of homework, quizzes, and exams (total must add up to 1.0):";

cin>>a>>b>>c;

if(a+b+c==1.00)

break;

else

cout<<"\n Weights do not add up to 1.0, try again...";

}

break;

case 5:

cout<<"\n-=| CHANGING NAME |=-\nPlease enter the new name for the gradebook: ";

cin>>g_name;

cout<<"\n Gradebook name changed from “ ” to "<<g_name;

break;

case 6:

cout<<"\n-=| CLASS AVERAGES |=-";

cout<<"\nHomework average of class: ";

cout<<"\nQuiz average of class: ";

cout<<"\nExam average of class: ";

cout<<"\nFinal average of class: ";

break;

case 7:

break;

*/

default:

cout<<"\n\nInvalid input\n\n";

}

}while(main_choice!=0);

return 0;

}

Explanation:

6 0
3 years ago
Other questions:
  • How would you describe the stability of the atmosphere if you noted a dry adiabatic rate of 10ºC/1000 meters, a wet adiabatic ra
    10·2 answers
  • Which of the following statements is true? Entropy has the unit of (A) Heat (B) Work (C) Energy (D) Heat capacity (E) Temperatur
    13·1 answer
  • A stress researcher wants to look at the effect of meditation on anxiety. To do this, she creates two groups of subjects: one gr
    13·1 answer
  • If i eat myself will I get twice as big or disappear completely?
    7·1 answer
  • An air-standard Diesel cycle has a compression ratio of 16 and a cutoff ratio of 2. At the beginning of the compression process,
    12·1 answer
  • N2 flows through an insulated horizontal tube at steady state. With an inlet temperature of 150°C and a velocity change from 2 m
    11·1 answer
  • a stem and leaf display describes two-digit integers between 20 and 80. for one one of the classes displayed, the row appears as
    6·1 answer
  • Which of the following demonstrates a typical project benchmark progression?
    9·2 answers
  • The most flexible and mobile method of supplying our need for mechanical energy has been the internal-__________ engine. (10 let
    9·2 answers
  • Using the tables for water, determine the specified property data at the indicated states. In each case, locate the state on ske
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!