D. A DDoS knocks a webpage offline by spamming the IP with loads of traffic so it over loads the server.
Answer:
Work breakdown structure.
Explanation:
The Work breakdown structure is used in project management which divided the project into smaller parts in software development. When the project is divided into the smaller parts it is distributed that part individually in the member of the project.
The main advantage of Work breakdown structure when it is divided into smaller parts it is easy to maintain and project work in a very efficient manner also the development of the project in a very fast manner.
Answer:
d. Merge sort
Explanation:
Merge sort is example of an efficient sorting alogrithm. The Divide and conquer rule is used in this technique. This method breakdown the list into multiple sublists and each sublist contains a single element. This technique merged in the form of sorted lists. This technique uses external memory of the system while sorting.
Merge sort is used to sort the 10,000 items using only 1,000 slots available in the RAM.
Import java.util.Scanner;
public class MinutesConversion {
private static Scanner inputDevice;
public static void main(String[] args) {
int minutes, hours;
float days; // float for decimal point
inputDevice = new Scanner(System.in);
System.out.println("Please enter minutes for conversion >> ");
minutes = inputDevice.nextInt();
hours = minutes / 60;
days = hours / 24.0f;
System.out.println(+ minutes + " minutes is " + hours + " hour(s) or" + days " days");
}
}