Answer: (A) Computer networks allow individuals to share many types of resources.
Explanation:
Computer network is basically known as digital telecommunication that allowing various nodes to sharing different types of resources in the network. In the computer network, the data link is establish over the cable like wire and optic media in the network.
The network basically allow sharing of the computing network and various types of resources in the networking.
It can allow sharing resources like printers, exchange files and CDs. There are mainly two types of networking that are: LAN and WAN.
If a router tried to match a packet sourced from IP address 1.1.1.1 using this ACL, the first statement will be used.
a. First
<u>Explanation:</u>
We use ACL technology to make basic security level in the network. ACL is strictly used to update the routing in the network and make sure network pears and make sure the flow control for network traffic is followed.
Since it is routing ip address through ACL statement. It all depends on how the network engineer routed the traffic in the network. A packet with source IP address 1.1.1.1 would match any of the three explicitly configured commands described in the question. As a result, the first statement will be used.
The router searches the ACL statement by order and when the match is found it stops execution of the ACL statement that will match with the first occurrence.
Answer:
#include <iostream>
using namespace std;
int cube(int num)//function cube..
{
return num*num*num;
}
int main() {
int result=cube(4);//result stores the value of cube(4).
cout<<result;//displaying it to the screen.
return 0;
}
Explanation:
The above code is in C++ language.The function cube is passed with value 4 and the result of it is stored in the variable result of integer type.Then the result is displayed using the cout. Which is used to print the statement to the output screen.
Answer:
Digital computer
Explanation:
The computer that process data that are represented in the form of discrete values are called digital computer.
Answer:
x = input ("Enter a word: ")
y = input ("Enter a word: ")
print ( x, " ", y)
Explanation:
This is the simplest way to write it using Python.