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.
Most minerals can be characterized and classified by their unique physical properties: hardness, luster, color, streak, specific gravity, cleavage, fracture, and tenacity.
<em>-</em><em> </em><em>BRAINLIEST</em><em> answerer</em><em> ❤️</em><em>✌</em>
The statement which best characterizes the relationship between a general contractor and a construction manager is that; A construction manager subcontracts a general contractor to perform <em>work</em>.
A construction project manager is saddled with the responsibility of overseeing the planning and delivery of construction projects.
- In essence, they ensure that work is completed on time and within budget. Other functions include organising logistics, delegation of work and tracking of spending.
A general contractor otherwise known as the prime contractor is responsible for the day-to-day oversight of a construction site,<em> employment of labour, management of vendors and trades, and most importantly, the communication of information to all involved parties throughout the course of a building project.</em>
- <em>Ultimately</em><em>,</em><em> </em><em>the </em><em>relationship</em><em> </em><em>between</em><em> </em><em>a </em><em>general contractor and a construction manager is that; A construction manager subcontracts a general contractor to perform work.</em>
<em>Read </em><em>more</em><em>:</em>
<em>brainly.com/question/17157892</em>
Answer: (a) 36.18mm
(b) 23.52
Explanation: see attachment
A chemical engineer can clearly see from this kind of test if a substance stays in a system and builds up or if it just passes through.
<h3>What is a chemical engineer?</h3>
- Processes for manufacturing chemicals are created and designed by chemical engineers.
- To solve issues involving the manufacture or usage of chemicals, fuel, medications, food, and many other goods, chemical engineers use the concepts of chemistry, biology, physics, and math.
- A wide range of sectors, including petrochemicals and energy in general, polymers, sophisticated materials, microelectronics, pharmaceuticals, biotechnology, foods, paper, dyes, and fertilizers, have a significant demand for chemical engineers.
- Chemical engineering is undoubtedly difficult because it requires a lot of physics and math, as well as a significant number of exams at the degree level.
To learn more about chemical engineer, refer to:
brainly.com/question/23542721
#SPJ4