Answer:
Issue the reload command without saving the running configuration.
Explanation:
Answer:
A, system software
Explanation:
that is answer an interpreter is a type of system software
Answer:
3
Explanation:
The sequence seems to follow a 2-step pattern.
1)Divide the first number by 5 to get the second number.
2)Add 10 to the second number to get the third number.
75/5 = 15
15 + 10 = 25
25/5 = 5
5 + 10 = 15
---> 15/5 = [3] (Answer)
Answer:
// CPP program to Convert characters
// of a string to opposite case
#include<iostream>
using namespace std;
// Function to convert characters
// of a string to opposite case
void convertOpposite(string &str)
{
int ln = str.length();
// Conversion according to ASCII values
for (int i=0; i<ln; i++)
{
if (str[i]>='a' && str[i]<='z')
//Convert lowercase to uppercase
str[i] = str[i] - 32;
else if(str[i]>='A' && str[i]<='Z')
//Convert uppercase to lowercase
str[i] = str[i] + 32;
}
}
// Driver function
int main()
{
string str = "GeEkSfOrGeEkS";
// Calling the Function
convertOpposite(str);
cout << str;
return 0;
}
Explanation:
Answer:
Bus Topology
Explanation:
In local area networks (LANs), Bus topology is used to connect all the computers on the single cable. This cable is called backbone of the network. In this type of network when a computer sends data, it will be received on entire network.
For Example
In water line system, all the taps that are connected to single pipe. If the pipe or a single tap broken this will affect the whole system.
Entire system can be crash if any node or wire will break.