I think it’s b vertically
Answer:
camera operators
directors of photography
Explanation:
Cinematography is simply the art of taking photos and being in charge of cameras in the process of film-making.
There are alternative names for a cinematographer and they include camera operators and directors of photography
Answer:
Lack of segregation of duties
Explanation:
Internal Controls are set of rules and guidelines that are followed to ensure effectiveness of business operations. The main risk in the business is weak internal controls. There are some organizations with strong internal controls but implementation of such controls is a challenge for organizations. There are human errors, IT security risks, fraud and compliance risk.
The risks associated with Olive limited is that there is no segregation of duties, Richard Palm is preparing journal vouchers, posts the journal vouchers and reconciles the balance himself. If he makes an error in recording a transaction there is no one who reviews his work and can identify an error. Also if Richard is involved in a fraud and collaborates with purchase department or sales department staff, he can pass a transaction without any supervision.
Answer:
public static void minMax(int num1, int num2, int num3, int smallest, int largest){
}
Explanation:
- The function declaration above is in Java programming Language
- The access modifier (public) is optional it could be private as well
- static because it is found within same class as the main method
- void because it will return no value
- The parenthesis contain the parameters as specified by the question