#let the user input data
Hours = int(input(“enter how many hours were worked”))
Pay_rate = float(input(“Enter the pay rate”))
Pay_amount = Pay_rate * Hours
#calculate the wages
Print (Pay_amount)
#print the final answer
Answer:
DateManager.printTodaysDate();
Explanation:
As class named "DateManager" which will call the "printTodaysDate()" static function.Static method are those who are accessed by the classname not by the object .
- As printTodaysDate(); is a static method it means it cannot hold non static data.It hold only the static data,We cannot used super keyword in the printTodaysDate(); function.
- So the statement DateManager.printTodaysDate(); calls print Todays Date.
Answer:
A file can only be locked out to other users or processes only if it's already open, meaning it's in use as a resource during the time window and therefore it's impossible solving the race condition problem by locking the file during the check-and-use window.
Hence, during the check-and-use process, it's impossible to lock a file.
In conclusion, any lock created can be ignored by the malicious process.
Answer:
to allow administrators to assign rights and permissions to multiple users
Explanation:
The tool that sets rules for both the transport of data packets and the addressing system for a network such as the ARPANET is called; Protocol
<h3>Understanding Protocols</h3>
In computer systems communications, a protocol is defined as a set of rules and regulations that allow a network of nodes to transport and receive data information.
Now, each transport layer in a system of network such as ARAPNET will always have a protocol set such as TCP and IP.
Read more about internet protocols at; brainly.com/question/17820678