Answer:
What is true about a point and shoot camera?
- They are often smaller than SLR cameras
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.
You need to explain it more simple as everyone is clueless
Explanation:
Precision machining is a subtractive process used in cases where material needs to be removed from a raw product to create the finished product. Precision machining can be used to create a wide variety of products, items, and parts for any number of different objects and materials. These parts usually require tight tolerances variation from nominal dimensions and from part to part, which means that there is not much room for error in the production of the piece. Repeatability and well-controlled tolerances are hallmarks of precision machining. Components, parts and finished durable products that are designed to maintain extremely tight tolerance margins and a high degree of durability are essential and common drivers for utilization of precision machining. For example, parts that need to work together as part of a machine may need to always align within a certain margin of 0.01mm to 0.05mm. Precision engineering and machining help to ensure these parts can not only be made precisely but can be produced with this level of accuracy over and over again.
Answer:
The angle of twist can be computed using the material’s shear modulus if and only if the shear stress is still in the elastic region
Explanation:
The shear modulus (G) is the ratio of shear stress to shear strain. Like the modulus of elasticity, the shear modulus is governed by Hooke’s Law: the relationship between shear stress and shear strain is proportional up to the proportional limit of the material. The angle of twist can be computed using the material’s shear modulus if and only if the shear stress is still in the elastic region.