Answer:
Declare variable b in both lines
i.e. int b
Explanation:
In the given code, the parameters of both functions were not properly declared.
When listing the parameters, the data type must be clearly stated for all parameters (individually)
In the declaration of both functions, only variable a is declared as integer while b is undeclared.
So, the correction is to declare b as integer
 
        
             
        
        
        
Answer:
prevent set-backs
Explanation:
some others can be project initiation, project planning,  project execution, project monitoring and control, and project closure.  Hope it helps you! If it does it would be appreciated to be marked brainliest
 
        
             
        
        
        
Answer:
The correct answer to the following question is "Typewriters".
Explanation:
CADCFA seems to be the very first provision of federal laws to specifically concentrate on computer assault. These clauses continued to allow corporations to prosecute unjust workers for compensation for the misuse of confidential or sensitive information.
- Even though we all agree that sometimes a federal worker uses the typewriters in the abundance of power, that's why it's not protected by that same act.
- The other options are incorrect because they are all known and are covered for that given CADCFA act.
 
        
             
        
        
        
Undo is Ctrl-Z. Undo buttons also exist in most non-Notepad text editing programs.
        
             
        
        
        
Def calculations(miles, hours):
 milesPerHour = miles / hours
 return milesPerHour
def main():
 miles = input("Enter Miles driven: ")
 hours = input("Enter Travel Hours: ")
 print(calculations(miles, hours))
if __name__=='__main__':
 main()