Answer:
As a way to learn from others, as a way to find information
Explanation:
When you read about lets say how to make a certain cookie mix you like your learning from someone else. The source is also helping you find information about that topic you want. Its not supposed to be a way for entertainment or games, its not a platform for you to talk to others, and not made for you to just copy and take credit.
Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main() {
//variable to store input
double price;
int totalNumber;
// variable to store total price
double total_price;
cout<<"Enter the price of an order:";
// read the price of an order
cin>>price;
cout<<"Enter the number of orders:";
// read the total number of orders
cin>>totalNumber;
// calculate total price of all orders
total_price=price*totalNumber;
cout<<"total price of all orders: "<<total_price<<endl;
return 0;
}
Explanation:
Declare three variables "price" of double type,"totalNumber" of int type And "total_price" of type double.Read the value of an order and number of orders. The calculate the total price by multiply "price" with "totalNumber" and assign it to variable "total_price". Print the total price.
Output:
Enter the price of an order:12.5
Enter the number of orders:3
total price of all orders: 37.5
Answer:
It's easier to define text-based programming languages. These are languages that are typed using a keyboard and stored as text files. A graphical or visual language typically uses drag and drop rather than typing. It may use icons or textual labels on blocks or elements.
Asyncronous is the answer I think
Answer:
d. His own
Explanation:
John is the JAD project leader
Joint Application Development (JAD) is a process that accelerates the design of information technology solutions. JAD uses customer involvement and group dynamics to accurately depict the user's view of the business need and to jointly develop a solution.
The executive sponsor is the person from the customer's organization who has the ultimate authority to make decisions about the project. The sponsor may be the customer's project leader, the CIO, or, in some cases, the CEO. The facilitator works with the sponsor to get the project started; it is essential, however, that the sponsor make key decisions, not the facilitator.
The executive sponsor has the following responsibilities:
. Accept ultimate authority and responsibility for the functional area to be addressed by the system.
· Resolve business policy conflicts by being the ultimate decision? maker.
· Honor the results of the JAD process.
· Set the vision for the project.
· Ensure the project team has access to and commitment from the right business user experts.
· Communicate customer support and cooperation.