Explanation:
It's placed near the door. When a visitor presses the button, the bell rings inside alerting you that someone is at the door.
Answer:we have games like alien wars call of duty astro avengers
Explanation:8
An information system is crucial to the success of a business. Itemized below are five benefits of operating an information system in a business.
<h3>What are the benefits of an Information System?</h3>
Information systems are important because:
- They help to increase and enhance operational efficiencies such as accounting, sales, inventory, and HR operations.
- They help to minimize costs. As the business makes more and more informed decisions, its costs will drop.
- It enhances customer service. Information about customers helps the business to tailor its services to the requirements of each customer.
- Information system helps the decision-makers in the business to make better and more informed decisions.
- Information systems help to ensure business continuity.
<h3>What are the requirements for creating an information system?
</h3>
An information system requires the following:
- Hardware for the computer workstation and addendums
- Software
- A network communication amongst the computers and hardware
- a map of the company's processes and the people responsible for such processes
- A procedural manual.
- Existing data from the business.
For the barber's shop, for example, some of the components of the information system he must put in place are:
A workstation that collects information about:
- Clients
- Details of Sales
- Expenses
- Compliance dates and records etc.
Learn more about Information Systems at:
brainly.com/question/25226643
Answer:
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
int[] array = new int[10];
int index = 0;
while(index < array.size()){
int number = (rand() % 100) + 1;
for (int i = 0; i < 1; i++) {
array[index] = number;
cout<< "Position "<< index << "of the array = "<< number << endl;
++index;
}
}
}
Explanation:
The while loop in the source code loops over a set of code ten times, The for loop only loops once to add the generated random number between 1 and 100 to the array of size 10. At the end of the for loop, the index location and the item of the array is printed out on the screen. The random number is generated from the 'rand()' function of the C++ standard library.
Answer:
The function in Python is as follows:
def MaxValue(userNum1, userNum2):
if userNum2>userNum1:
return userNum2
else:
return userNum1
Explanation:
This defines the function
def MaxValue(userNum1, userNum2):
This returns userNum2 if userNum2 is greater than userNum1
<em> if userNum2>userNum1:</em>
<em> return userNum2</em>
If otherwise, this returns userNum1
<em> else:</em>
<em> return userNum1</em>
<em />