Answer:
the word processing
Explanation:
the word is a good word
Answer:
All of these
Explanation:
A peer-to-peer network is a type of computer network that computer devices directly to each other, sharing information and other resources on the network.
It does not have a centralized database, there are no master or slave as each device in the network is a master on its own, and the devices all have unique addresses assigned statically for identification.
Answer:
sample output
Enter f0 = 440
440.0,466.1637615180899, 493.8833012561241,
523.2511306011974, 554.3652619537443
Explanation:
import math // math library
def RaiseToPower(): // RaiseToPower method
r = math.pow(2,1/12) //r = 2^(1/12)
f0 = float(input('Enter f0 : ')) //input from user
//a key has a frequency,sy f0
print(f0,end=' ') //Display statement
for n in range(1,5): //Iterate the loop up to the next 4 higher key Hz
n = f0 * math.pow(r,n) //calculate the fn value
print(fn,end=' ') //Display statement
RaiseToPower() //Call RaiseToPower method
Answer:
1. Get the number
2. Declare a variable to store the sum and set it to 0
3. Repeat the next two steps till the number is not 0
4. Get the rightmost digit of the number with help of remainder ‘%’ operator by dividing it with 10 and add it to sum.
5. Divide the number by 10 with help of ‘/’ operator
6. Print or return the sum
# include<iostream>
using namespace std;
/* Function to get sum of digits */
class gfg
{
public:
int getSum(float n)
{
float sum = 0 ;
while (n != 0)
{
sum = sum + n % 10;
n = n/10;
}
return sum;
}
};
//driver code
int main()
{
gfg g;
float n = 687;
cout<< g.getSum(n);
return 0;
}
Explanation:
The best method in network security to prevent intrusion are:
In the above case, the things to do is that one needs to focus on these areas for a a good network design. They are:
Therefore, The best method in network security to prevent intrusion are:
Learn more about network security from
#SPJ6
Answer:
There are many benefits to be gained from network segmentation, of which security is one of the most important. Having a totally flat and open network is a major risk. Network segmentation improves security by limiting access to resources to specific groups of individuals within the organization and makes unauthorized access more difficult. In the event of a system compromise, an attacker or unauthorized individual would only have access to resources on the same subnet. If access to certain databases in the data center must be given to a third party, by segmenting the network you can easily limit the resources that can be accessed, it also provides greater security against internal threats.
Explanation:
b. Use moist paper towels to wipe up particles
c. Use your shirt sleeve to make them disappear
d. Use a vacuum cleaner equipped with a HEPA filter while wearing your PPE
Answer: D) Use a vacuum cleaner equipped with a HEPA filter while wearing your PPE
Explanation:
Laser tone particle takes approximately 15 minutes for settle down as it is finely grounded particle. To avoid the inhaling of laser tone particles try to keep the air stable and leave the printer sometime after cleaning its area.
HEPA filter is the high efficiency filter which basically particulate air and improve the quality of air. It made up of variety of materials like glass filters, vegetable fiber etc.
The main application of HEPA filter that it is using as vacuum cleaner equipment and must wear personal protective equipment (PPE) while using this types of equipment.
Answer:
import java.util.*;
public class Country
{
public static void main(String args[])
{
char ch,temp;
int flag = 0;
String country;
ArrayList<String> countries = new ArrayList<String>();
Scanner sc = new Scanner(System.in);
do
{
System.out.println("enter the country you have visited:\t");
country = sc.next();
for(int i=0;i<countries.size();i++)
{
if(countries.get(i).equals(country))
{
System.out.println("you have already entered the country");
flag = 1;
break;
}
}
if(flag == 0)
{
countries.add(country);
flag = 0;
}
System.out.println("want to add another country(y/n):\t");
ch = sc.next().charAt(0);
}while(ch!='n');
Collections.sort(countries);
System.out.println("Countries you have visited:\t"+countries);
System.out.println("Total number of contries visited:"+countries.size());
}
}
Explanation: