Answer:
A)cout<<setw(9)<<fixed<<setprecision(2)<<34.789;
B)cout<<setw(5)<<fixed<<setprecision(3)<<7.0;
C)cout<<fixed<<5.789E12;
D)cout<<left<<setw(7)<<67;
Explanation:
Stream Manipulators are functions specifically designed to be used in conjunction with the insertion (<<) and extraction (>>) operators on stream objects in C++ programming while the 'cout' statement is used to display the output of a C++to the standard output device.
setw: used to specify the minimum number of character positions on the output field
setprecision: Sets the decimal precision to be used to format floating-point values on output operations.
fixed: is used to set the floatfield format flag for the specified str stream.
left: adjust output to the left.
A) To display the number 34.789 in a field of eight spaces with two decimal places of precision. cout<<setw(9)<<fixed<<setprecision(2)<<34.789;
B) To display the number 7.0 in a field of six spaces with three decimal places of precision. cout<<setw(5)<<fixed<<setprecision(3)<<7.0;
C) To print out the number 5.789e+12 in fixed-point notation. cout<<fixed<<5.789E12;
(D) To display the number 67 left-justified in a field of six spaces. cout<<left<<setw(7)<<67;
Answer:
Programing is using data or codes to make something happen A sensory is like when you move your arm in front of a device and like it has a light that turns on then that is sensory it like can tell your moving
Answer:
The code is in the Explanation
Explanation:
#include <iostream>
using namespace std;
int main() {
int xValNew = 0;
int yValNew = 0;
CoordTransform(3, 4, xValNew, yValNew);
cout << "(3, 4) becomes " << "(" << xValNew << ", " << yValNew << ")" << endl;
return 0;}
Answer:
Δr=20.45 %
Explanation:
Given that
Rake angle α = 15°
coefficient of friction ,μ = 0.15
The friction angle β
tanβ = μ
tanβ = 0.15
β=8.83°
2φ + β - α = 90°
φ=Shear angle
2φ + 8.833° - 15° = 90°
φ = 48.08°
Chip thickness r given as


r=0.88
New coefficient of friction ,μ' = 0.3
tanβ' = μ'
tanβ' = 0.3
β'=16.69°
2φ' + β' - α = 90°
φ'=Shear angle
2φ' + 16.69° - 25° = 90°
φ' = 49.15°
Chip thickness r' given as


r'=0.70
Percentage change


Δr=20.45 %