Answer:
the information processing cycle
Explanation:
Network topology is the arrangement of the elements of a communication network. Network topology can be used to define or describe the arrangement of various types of telecommunication networks, including command and control radio networks, industrial fieldbusses and computer networks.
Advantages:
It is easy to handle and implement.
It is best suited for small networks.
Disadvantages:
The cable length is limited. This limits the number of stations that can be connected.
This network topology can perform well only for a limited number of nodes.
<span><span />The Microprocessor is the key invention that
enabled computers to go into every home and office. Microprocessor is a
computer processor that enables the computer to run. It is also called as
central processing unit. It is also a multipurpose and programmable device that
accepts inputted data and process the data to provide an output. Microprocessor
started from 8-bit design to 16bit, 32 bit, 64 bit and now it is produce a
multi core design in the market. Faster and stronger design that can run
heavier applications.</span>
<u>Explanation:</u>
Hey there! you need not to panic about it ,your program didn't have Driver program i.e main program! the correct & working code is given below:
// C++ program to count even digits in a given number .
#include <iostream>
using namespace std;
// Function to count digits
int countEven(int n)
{
int even_count = 0;
while (n > 0)
{
int rem = n % 10;
if (rem % 2 == 0)
even_count++;
n = n / 10;
}
cout << "Even count : "
<< even_count;
if (even_count % 2 == 0 )
return 1;
else
return 0;
}
// Driver Code
int main()
{
int n;
std::cin >>n;
int t = countEven(n);
return 0;
}