correct me if i’m wrong i’m pretty sure it’s B i’ve had the same question
Answer:
the order higher is 3p79g5t88=yv5379
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:
The lowest point of the curve is at 239+42.5 ft where elevation is 124.16 ft.
Explanation:
Length of curve is given as
is given as
The K value is given from the table 3.3 for 55 mi/hr is 115. So the value of A is given as
A is given as
With initial grade, the elevation of PVC is
The station is given as
Low point is given as
The station of low point is given as
The elevation is given as
So the lowest point of the curve is at 239+42.5 ft where elevation is 124.16 ft.