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:
as soon as there is a design to improve
Explanation:
As a design engineer, I started on the "design improvement" step as soon as I had an initial conceptual design.
__
Then, I started that step again when my boss told me, "make it better."
_____
The more interesting question is, "when do you <em>stop</em> the design improvement step?" (Judging by the constant barrage of software updates, that answer is, "never.")
Answer:
A) True
Explanation:
Yes this is true when length is creases the heat transfer coefficient decease with length.
The heat transfer(h) coefficient is varying with x by given expression
For Laminar flow
For turbulent flow
But when flow is in transitional state the heat heat transfer(h) coefficient is increases with x.But for laminar as well as turbulent flow h is decrease when x increases.