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: B
Explanation: unless newer models added wingding to code inside fused computer...wingdings on a window ...not a motor
Snap rings, and bearings can be used to keep a gear on a shaft, hope this helps!!
Answer:
Java is called portable because you can compile a java code which will spew out a byte-code, and then you run that code with Java Virtual Machine. Java Virtual Machine is like an interpreter, which reads the compiled byte-code and runs it. So first of all, you need to install the JVM on the system you want.
Explanation:
The KVA rating of the step down transformer at the given power factor would be 62.5 kVA.
<h3>
What is power factor of a transformer?</h3>
Power factor (PF) is the ratio of working power, measured in kilowatts (kW), to apparent power, measured in kilovolt amperes (kVA).
PF = working power / apparent power
PF = kW/kVA
kVA = kW/PF
kVA = 50 kW/0.8
kVA = 62.5 kVA
Thus, the KVA rating of the step down transformer at the given power factor would be 62.5 kVA.
Learn more about power factor here: brainly.com/question/7956945
#SPJ1