Answer:
WATERFALL LIFE CYCLE
Explanation:
The waterfall life cycle or model is a software development process of operational software in a linear sequential flow. This means that any phase in the development process begins only if the previous phase is completed.
The waterfall model emphasizes that a logical progression of steps be taken throughout the software development life cycle .
Answer:
class Main {
public static void main(String[] args) {
System.out.println(" _");
System.out.println(" / \\");
System.out.println("| |");
System.out.println(" \\ _ /");
}
}
Explanation:
Backslashes have a special meaning in string literals. You have to escape them with a backslash, hence the double backslash.
Answer:
Routers control traffic between networks while switches control traffic within a network
Explanation:
Router and switches both are used to control the traffic. In local area network, different computer are connected with each other with in the organization or network. Switch is used to connect all the computers or devices in the local area network (LAN). The switch is responsible for connecting all the computers in the LAN and controlling the traffic within the LAN network.
On the other hand, Wide Area Network (WAN) is consist of multiple number of Local Area Networks (LANs). To connect all the LAN router is used. Router is responsible for connecting all the networks in the WAN and also responsible for controlling traffic between different networks.
Answer: abstract algebra
Explanation: start with the algorithm you are using, and phrase it using words that are easily transcribed into computer instructions.
Indent when you are enclosing instructions within a loop or a conditional clause. ...
Avoid words associated with a certain kind of computer language.