PLEASE HELP
NASA scientists have determined that the chance a single person would get hit by a piece of falling satellite is one in 3,200. What can you infer based on this probability?
A. Satellites that enter Earth’s atmosphere land mostly in the ocean.
B. NASA does a good job informing people of when satellites will enter the atmosphere.
C. Satellites that enter Earth’s atmosphere land mostly in unpopulated areas.
D. Much of a satellite is destroyed during the process of entering Earth’s atmosphere.
I think it’s manufacturing
Birds mostly fly in a V because the lead bird cuts al of the wind and has the hardest work and then after a while the lead bird goes to the back and another bird takes his place cutting all the wind for the other birds
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: A capacitor connected across the output allows the AC signal to pass through it and blocks the DC signal, thus acting as a high pass filter. The output across the capacitor is thus an unregulated filtered DC signal. This output can be used to drive electrical components like relays, motors, etc.
Explanation: