The equivalent of the resistance connected in the series will be Req=R₁+R₂+R₃.
<h3>
What is resistance?</h3>
Resistance is the obstruction offered whenever the current is flowing through the circuit.
So the equivalent resistance is when three resistances are connected in series. When the resistances are connected in series then the voltage is different and the current remain same in each resistance.
V eq = V₁ + V₂ + V₃
IReq = IR₁ + IR₂ + IR₃
Req = R₁ + R₂ + R₃
Therefore the equivalent of the resistance connected in the series will be Req=R₁+R₂+R₃.
To know more about resistance follow
brainly.com/question/24858512
#SPJ4
Answer:
Technicians A is right for the answer
Answer:
A. optical isolation
Explanation:
well I can't really give a good explanation because I also saw the same question in my exams and option A was the correct answer
Answer:
/* C Program to rotate matrix by 90 degrees */
#include<stdio.h>
int main()
{
int matrix[100][100];
int m,n,i,j;
printf("Enter row and columns of matrix: ");
scanf("%d%d",&m,&n);
/* Enter m*n array elements */
printf("Enter matrix elements: \n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&matrix[i][j]);
}
}
/* matrix after the 90 degrees rotation */
printf("Matrix after 90 degrees roration \n");
for(i=0;i<n;i++)
{
for(j=m-1;j>=0;j--)
{
printf("%d ",matrix[j][i]);
}
printf("\n");
}
return 0;
}