The answer is City Area Network.
Local Area Network, Metropolitan Network, and Wide Area Network are only some of the types of network. LAN is a network of computers in a single site usually in a single office building. While MAN, is a network of computer across an entire city or a small region. WAN is a very large area of network such as the Internet.
Answer:disk caching
Explanation:
Disk caching speeds up hard drive performance
Defining focus helps scan for Information quickly in a web page.
- Visual balance helps make visually attractive and functional web page
- Color harmonies helps with color combinations in a web page
- Screen design principles helps provide visually pleasing screen
- arrangement in a web page.
<h3>What is Defining focus?</h3>
This is known to be a form of good screen design that can help on to highlight important areas to which one can focus on when looking for information.
Note that this form of guidance helps a person to scan for information very fast . Without having a clear focal points, you have to work a lot on the the entire web page.
Learn more about Defining focus from
brainly.com/question/7284179
Answer:
Recursion is a process of defining a method that calls itself repeatedly
Explanation:
Recursion is a basic programming technique of defining a method that calls itself repeatedly.
One practical example is using recursion to find the factorial of a number.
Consider the following java code below, it uses recursion to solve for the factorial of a number.
class Main {
public static void main (String[] args) {
System.out.println("Factorial of 3 is " + factorial(3));
System.out.println("Factorial of 5 is " + factorial(5));
System.out.println("Factorial of 7 is " + factorial(7));
}
//the factorial method uses recursion to find the factorial of the
// parameter of the integer pass into it
private static int factorial(int n) {
int result;
if ( n ==1) return 1;
result = factorial(n-1) * n;
return result;
}
}
Answer: See explanation
Explanation:
A flowchart simply means the representation of a computer program in graphics. In flowchart, the relationship in the program are been defined by using geometric symbols like arrows, oval shapes and rectangle.
Advantages of flowchart include cost reduction, faster and easier way of communication, it also facilitates troubleshooting and helps in the promotion of logical accuracy.
Disadvantages include the fact it is expensive and also because it is not easy to manage.