Answer:
1. Design system to avoid theatre tickets selling issue.
2. Resources provided to student who can built a system for the theatre tickets booking.
3. Medallion Theatre Booking System
Add/edit patron
Add/edit production
Add/edit performance
Add/edit seats
Purchase tickets
Generate Tickets Sold Report
4.GUI or graphical user interface allows the user to connect through graphical icons.
Explanation:
The main purpose is to avoid problems of duplicate tickets sales in future. The system will enable the selling of each seat to one customer only and when an attempt is made to resold the seat the system warns the user creating a check for original sale. This will help theatre to avoid any issues in future and customers will be happy with their ease of confirmation of booking.
Answer:
The answer is "Option C"
Explanation:
VPN reflects virtual private networking, providing secure networking and strong links between private networks. It helps us to use remote machines, that are like on the same local site, and we use VPN to reach the hospital website. And other choices which could be listed as follows that is not correct:
- In option A, WAN represents a wide area network, it's used to connect computers through networking, that's why it's not correct.
- In option B, LAN stands for local area network, it shares a common line or wireless links for communication, that's why it is not correct.
- In option D, FOV stands for field of view that is used for gaming purposes, that's why it is not correct.
Answer:
Testing
Explanation:
From the question, we understand that Carlos just finished the coding of the app.
In software development life cycle, the coding phase is where Carlos is expected to make use of his choice of programming language to design the app;
This stage is an integral part of the implementation process and according to the question, the coding has been completed;
The next phase or stage after the implementation phase is testing.
Hence, Carlos is getting ready to test the app.
Answer:
A. The function definition must appear before the function is called
Explanation:
Given
The above lines of code
Required
Determine the error in the program
In python, functions has be defined before they are called but in this case (of the given program), the function is called before it was defined and this will definitely result in an error;
<em>Hence, option A answers the question</em>
The correct sequence of the program is as follows:
<em>def evenOdd(n):
</em>
<em> if n % 2 == 0:
</em>
<em> return "even"
</em>
<em> return "odd"
</em>
<em>num = int(input("Enter an integer: "))
</em>
<em>print("The integer is", evenOdd(num))
</em>
<em />