B. It is a code that creates multiple copies on loading and damages the system
Answer: They must be dated.
Explanation: If pyrotechnic VDSs are used, they must be dated. Expired VDSs may be carried on board, but a minimum of three unexpired VDSs must be carried in the vessel.
Answer:
printStars(35);
Explanation:
public class Question {
public static void main(String args[]) {
printStars(35);
}
public static void printStars(int numberOfStars){
for(int i = 1; i <= numberOfStars; i++){
System.out.print("*");
}
System.out.print("\n");
}
}
Answer:
the software that manages and controls the activities and resources of the computer is OS
Explanation:
the software that manages and controls the activities and resources of the computer is OS
because here we know that CPU is hardware
and ALU is a digital circuit that is use to perform arithmetic and logic operations
and
GUI or Graphical User Interface controls the graphical interface of the applications
so here correct option is OS that is the software that manages and controls the activities and resources of the computer
lst = short_names.split()
print(sorted(lst,reverse = True))