Answer:
"Materials requirement planning" is the correct answer for the above question.
Explanation:
- The "Materials requirement planning" is a software system that is used to hold the record of the raw materials.
- It is used to tell about the material which is present in the stocks. It also used to schedule the delivery.
- This software is used to enhance the productivity of the company.
- The above question asked about the software which is needed to keep the record of the raw material. This software is known as "Materials requirement planning".
The internet,,
To let the other doctor know about specific details on the patient, and other excessive information.
Hope this helps!! :)
Answer:
Algorithm:
1. Declare an integer variable N.
2. Read the value N from user.
3.While(N):
3.1 find r=N%10;
3.2 print r in new line.
3.3 Update N as N=N/10.
4.end program.
Implementation in C++.
// header
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variable
int N;
cout<<"Enter an Integer:";
cin>>N;
// find the digits of number
while(N)
{
// last digit
int r=N%10;
// print last digit
cout<<r<<endl;
// update the number
N=N/10;
}
return 0;
}
Output:
Enter an Integer:329
9
2
3
Read view
It allows to hide all instrument panels
Answer:
the answer is priming read
Explanation:
hope it helps u