Answer:
d. To take full advantage of the ERP process, re-engineering will need to occur.
Explanation:
Justification:
ERP Implementation: ERP gives a change in technological ways for managing resources, the way to run the business is remained same but now Ft becomes well planned Diversified P units of Mich do not share common process. and data, generally employ phased-in approach of implementing ERP
• It is the way to overcome from the risk which is with the big bang approach, direct switching
• Perfect implementation of ERP needs re-engineering on the basis of performance
a. maintenance Sometimes ERP which is installed could not support one of the business process. due to lack of research before selecting it
• The statement that the diversified organizations. not. implement ERPs is least accurate because they implement it by employing phased-in approach Therefore, the correct option is d
The sign bit is the high order bit, so that leaves two bits for the value. Two bits can represent 0-3. 2^2 possibilities.
Question
video- sharing sites allow videos to be uploaded in which file format?
the correct answer is .avi?
Yes it is .avi, because the other extension are not video.
Answer: <u><em> A. Smoothly</em></u>
Explanation: I Just Had This Question
Brainliest Please!!!
Please!!!!!!
Answer:
# include<iostream>
#include<conio.h>
using namespace std;
main()
{
char choice;
cout<<"Enter your Choice"
cin>>choice;
switch (choice)
{
case 'y':
cout<<"Your request is being processed";
break;
case 'n':
cout<<"Thank you anyway for your consideration";
break;
case 'h':
cout<<"Sorry, no help is currently available";
default:
cout<<"Incorrect Choice";
break;
}
getch();
}
Explanation:
In this program, a character type variable named as choice is selected for the input. This choice variable can be y, n or h as per requirement of the program. Switch statement is chose for the selection of output statement with respect to its mentioned input. This program shows the output statement for above mentioned characters. In case of any other character the program returns Incorrect choice and ends.