Answer:Operations
Explanation:Information system is the system that provides the knowledge about the technology and other related component working with the people.It has the function that help in the information and the communication technology.It has several function like analysis of the data, keeping record , processing etc.
The technique through which the data of the information system is managed and processed is considered in the category of the operations.Operation task manages the information that is previously stored as well as the current information.
Answer:
n=int(input("Enter number upto which you want to print prime numbers:\n"))#taking input of n in integer type..
for i in range(1,n): #looping over 1 to n.
pr=True #taking pr to be True..
for div in range(2,i): #looping over 2 to i..
if i%div==0:#if i is divisible by div then it is not prime
pr=False#making pr false
if pr and i!=1: #condition for printing
print(str(i))#printing the prime numbers..
Explanation:
In the python program we have checked for every integer up to n that is is not divisible by any integer between 2 to n-1 both inclusive if it is then it is not a prime number.
<span>In a RING TOPOLOGY, if any link between nodes is severed, the entire network is affected, and failure of a single node disrupts the entire network.
A ring topology is composed of nodes connected to </span><span>exactly two other nodes that forms into a single continuous pathway for signals through each node. This formation results to a disruption of the entire network when any link between nodes is severed. </span>
Answer:
go to a codeing site please give me brainliest
Explanation:
Answer:
A hard disk is a type of electro mechanical storage device that is used to store and retrieve digital information at a high speed while the tape disk is a storage device that stores data on a magnetic tape.
Explanation:
Due to its technology, the hard disk can accommodate high amounts of data and is faster than the tape disk.