Answer:
Thank you so much and may god bless you.
<h2>
Answer:</h2>
7532V
<h2>
Explanation:</h2>
For a given transformer, the ratio of the number of turns in its primary coil (
) to the number of turns in its secondary coil (
) is equal to the ratio of the input voltage (
) to the output voltage (
) of the transformer. i.e
=
----------------(i)
<em>From the question;</em>
= number of turns in the primary coil = 8 turns
= number of turns in the secondary coil = 515 turns
= input voltage = 117V
<em>Substitute these values into equation (i) as follows;</em>
= 
<em>Solve for </em>
<em>;</em>
= 117 x 515 / 8
= 7532V
Therefore, the output voltage (in V) of the transformer is 7532
Answer:
Explanation:
Given that:
The Inside pressure (p) = 1402 kPa
= 1.402 × 10³ Pa
Force (F) = 13 kN
= 13 × 10³ N
Thickness (t) = 18 mm
= 18 × 10⁻³ m
Radius (r) = 306 mm
= 306 × 10⁻³ m
Suppose we choose the tensile stress to be (+ve) and the compressive stress to be (-ve)
Then;
the state of the plane stress can be expressed as follows:

Since d = 2r
Then:







When we take a look at the surface of the circular cylinder parabolic variation, the shear stress is zero.
Thus;

Answer:
The following program is in C++.
#include <bits/stdc++.h>
using namespace std;
void lastChars(string s)
{
int l=s.length();
if(l!=0)
{
cout<<"The last character of the string is: "<<s[l-1];
}
}
int main() {
string s;//declaring a string..
getline(cin,s);//taking input of the string..
lastChars(s);//calling the function..
return 0;
}
Input:-
Alex is going home
Output:-
The last character of the string is: e
Explanation:
In the function lastChars() there is one argument that is a string.I have declared a integer variable l that stores the length of the string.If the length of the string is not 0.Then printing the last character of the string.In the main function I have called the function lastChars() with the string s that is prompted from the user.