What is the function of the NOS? Select all that apply.

•network management
•connects network nodes
•network security
•provides MACs
•gives access to privileges
•data protection

Answers

Answer 1

Answer:

.network management

Explanation:

pls need brainliest

Answer 2

Answer:

gives access privileges

network management

network security

data protection

Explanation:


Related Questions

What will the declaration below do to its target?

animation-direction: reverse;
The animation steps will play backward.
The animation steps will play forward, then backward.
The animation steps will play forward.
The animation steps will play backward, then forward.

Answers

The animation steps will play forward then backward

Write a program to implement problem statement below; provide the menu for input N and number of experiment M to calculate average time on M runs. randomly generated list. State your estimate on the BigO number of your algorithm/program logic. (we discussed in the class) Measure the performance of your program by given different N with randomly generated list with multiple experiment of Ns against time to draw the BigO graph (using excel) we discussed during the lecture.

Answers

Answer:

Explanation:

#include<iostream>

#include<ctime>

#include<bits/stdc++.h>

using namespace std;

double calculate(double arr[], int l)

{

double avg=0.0;

int x;

for(x=0;x<l;x++)

{

avg+=arr[x];

}

avg/=l;

return avg;

}

int biggest(int arr[], int n)

{

int x,idx,big=-1;

for(x=0;x<n;x++)

{

if(arr[x]>big)

{

big=arr[x];

idx=x;

}

}

return idx;

}

int main()

{

vector<pair<int,double> >result;

cout<<"Enter 1 for iteration\nEnter 2 for exit\n";

int choice;

cin>>choice;

while(choice!=2)

{

int n,m;

cout<<"Enter N"<<endl;

cin>>n;

cout<<"Enter M"<<endl;

cin>>m;

int c=m;

double running_time[c];

while(c>0)

{

int arr[n];

int x;

for(x=0;x<n;x++)

{

arr[x] = rand();

}

clock_t start = clock();

int pos = biggest(arr,n);

clock_t t_end = clock();

c--;

running_time[c] = 1000.0*(t_end-start)/CLOCKS_PER_SEC;

}

double avg_running_time = calculate(running_time,m);

result.push_back(make_pair(n,avg_running_time));

cout<<"Enter 1 for iteration\nEnter 2 for exit\n";

cin>>choice;

}

for(int x=0;x<result.size();x++)

{

cout<<result[x].first<<" "<<result[x].second<<endl;

}

}

hello! can someone write a c++ program for this problem

Problema 2018.3.2 - Cheated dice
Costica is on vacation and his parents sent him to the country. There he gets terribly bored and looking through his grandfather's closet, he came across a bag full of dice. Having no one to play dice with, but it seemed to him that some of the dice were heavier than the others, Costica chose a dice and started to test it by throwing it with him and noting how many times each face fell. He then tries to figure out whether the dice are rolled or not, considering that the difference between the maximum number of appearances of one face and the minimum number of occurrences (of any other face) should not exceed 10% of the total number of throws.
Requirement
Given a number N of dice rolls and then N natural numbers in the range [1: 6] representing the numbers obtained on the rolls, determine whether the dice is tricked according to the above condition.
Input data
From the input (stdin stream) on the first line reads the natural number N, representing the number of rolls. On the following N lines there is a natural number in the range [1: 6] representing the numbers obtained on throws.
Output data
At the output (stdout stream) a single number will be displayed, 0 or 1, 0 if the dice are normal, and 1 if it is cheated.
ATTENTION to the requirement of the problem: the results must be displayed EXACTLY in the way indicated! In other words, nothing will be displayed on the standard output stream in addition to the problem requirement; as a result of the automatic evaluation, any additional character displayed, or a display different from the one indicated, will lead to an erroneous result and therefore to the qualification "Rejected".
Restrictions and clarifications
1. 10 ≤ N ≤ 100
2. Caution: Depending on the programming language chosen, the file containing the code must have one of the extensions .c, .cpp, .java, or .m. The web editor will not automatically add these extensions and their absence makes it impossible to compile the program!
3. Attention: The source file must be named by the candidate as: . where name is the last name of the candidate and the extension (ext) is the one chosen according to the previous point. Beware of Java language restrictions on class name and file name!
Input data

10
6
6
6
6
6
6
6
6
6
6
Output data
1

Roll the dice 10 times, all 10 rolls produce the number 6. Because the difference between the maximum number of rolls (10) and the minimum number of rolls (0) is strictly greater than 10% of the total number of rolls (10% of 10 is 1), we conclude that the dice are oiled.

Input data
10
1
4
2
5
4
6
2
1
3
3
Output data
0

Throw the dice 10 times and get: 1 twice, 2 twice, 3 twice, 4 twice, 5 and 6 at a time. Because the difference between the maximum number of appearances (two) and the minimum number of occurrences (one) is less than or equal to 10% of the total number of throws (10% of 10 is 1), we conclude that the dice are not deceived.

Answers

Answer:

f0ll0w me on insta gram Id:Anshi threddy_06 (no gap between I and t)

Which of the following is true? a. There are RFCs that describe challenge-response authentication techniques to use with email. b. Filtering for spam sometimes produces a false positive, in which legitimate email is identified as spam. c. Spam relies heavily on the absence of email authentication. d. All of the above.

Answers

The option that is true is option b. Filtering for spam sometimes produces a false positive, in which legitimate email is identified as spam.

How is spam filtration carried out?

The processing of email to organize it in accordance with predetermined criteria is known as email filtering. The word can allude to the use of human intelligence, although it most frequently describes how messages are processed automatically at SMTP servers, sometimes using anti-spam tactics.

Therefore, Email filtering operates as previously stated by scanning incoming messages for red flags that indicate spam or phishing content and then automatically transferring such messages to a different folder. Spam filters evaluate an incoming email using a variety of criteria.

Learn more about Filtering for spam from

https://brainly.com/question/13058726
#SPJ1

How have technology and social media changed reading?
O A. Physical books can only be read on the web.
B. Now reading is a conversation of give and take.
O C. People no longer have to read anything at all.
D. Reading often takes much longer to undergo.

Answers

Answer:

B?

Explanation:

I'm super sorry if I get this wrong for you but after thinking so much I probably think it would be B

Answer:

the guy above is right it is B

Explanation:

because 2+2=4

Select the correct term to complete the sentence.
The
file format is used for video files.

A. .pptx

B. .mp3

C. .jpeg

D. .mp4

Answers

Answer: D. mp4

its mp4 because its always on video files

4. Write a program to calculate square root and
cube root of an entered number .​

Answers

Answer:

DECLARE SUB SQUARE (N)

CLS

INPUT “ENTER ANY NUMBER”; N

CALL SQUARE(N)

END

SUB SQUARE (N)

S = N ^ 2

PRINT “SQUARE OF NUMBER “; S

END SUB

What does the top-level domain in a URL indicate?
A. the organization or company that owns the website
B. the organization or company that operates the website
C. the protocol used to access the website D. the type of website the URL points to

Answers

Answer:

b i think

Explanation:

A top-level domain (TLD) is the last segment of the domain name. The TLD is the letters immediately following the final dot in an Internet address. A TLD identifies something about the website associated with it, such as its purpose, the organization that owns it or the geographical area where it originates.

Answer:

The answer is D. The type of website the URL points to.

Explanation:

I got it right on the Edmentum test.

list and describe each of the activities of technology

Answers

Answer:

network has led to exposure of dirty things to young ones.

air transport has led to losing of lives

Other Questions
which model shows 9 (3+6) = (9 x 3) + (9 x 6)?NO LINKS OR FILES THANK YOU!! 3. Svante Arrhenius developed a definition of acids and baseswhich stated...A. acids produce OH+ ions and bases produce H ionsB. acids produce H+ ions and bases produce OH ionsSTATC. acids and bases are the sameD. acids have a high pH and bases have a low pHpls help btw any links will be reported. HELP!!!!!!!!!The Consumer Bill of Rights says that you have the right to safety. This means _____________. you are protected from misleading advertising by being able to ask for the facts to make a good decision you are protected from dangerous products you can make your own decisions you can speak out if you are not satisfied Find X and angles R and L. Please help me with this The U.S Constitution is considered a milestone in the protection of individual rights, but it is by no means perfect. What is currently lacking in the Constitution? How should those changes be made - through court decisions, or by amendments?? Given circle Q a measure of SR = 120 degree and a radius of 9 feet, as shown below determine the arc length of SR use mathematics to explain how you determined your answer. Volume and circles Help please In your OWN words, what is the difference between a solute, solvent and solution? In response to dwindling sales of organic meats, Hain Celestial executives decided to promote the sale of organically grown nuts as an alternative source of protein, which is an excellent example of a firm's: HELPPPPPPsolve the equation for x2/3x-1/9x+5=20 Without looking, Tammy takes a marble out of a bag that contains 10 red marbles, 15 green marbles, and 25 blue marbles. She records its color and returns the marble to the bag. If Tammy repeats this process 90 times, how many times can she expect to pull out a red marble? A gas occupies 4.21 Iiters at a pressure 1 074 atm. What will its volume be if the pressure is decreased to 0.46 atm? Read the following paragraph.Macy was nervous. She had never attended such a formal dinner before. People were speaking in low voices. The matching plates, bowls, glasses, and cutlery were laid out perfectly. Macy had no idea which of the two forks she needed to use first. Dinner at her house was always relaxed with everyone talking and laughing loudly about the events of the day. Most of the time their plates didnt even match, and the napkins were always made of paper. Macy took the cloth napkin and placed it on her lap, just like she had just seen her friend do. So far, so good. Hopefully, she could copy her friend for the rest of dinner.Use the context clues to find the definition for the word formal as it is used in this paragraph.a-properb-expensivec-lengthyd-deliciousFOR BRAINLIST what was the first name of the first english settlement in new england The ratio x:y is 1:3Which of the following statements are correct?A. x is 1/3 of yB. y is 2 of (x + y)C x is 1/4 of yD. y is 3/4 of x is this good for community safety? i am very worried this wont get me a good grade and need reassurance 24/7 :) A 35.0 g bullet strikes a 5.3 kg stationary wooden block and embeds itself in the block. The block and bullet fly off together at 7.1 m/s. What was the original speed of the bullet? (WILL GIVE BRAINLIEST) I need answers asap please!!!:) A very large company would be most likely to have a(n) ___ at the ahead of its accounting department.A. Executive vice presidentB. ControllerC. Chief financial officerD. Accounting manager What led to the rise of totalitarian dictators after World War I?A. The rise of democracy led to free elections around the world.B. There was a need for stronger leadership during World War II.C. Capitalism overtook socialism as the main economic model.D. Widespread economic depression led to political unrest. Ben walks to the zoo, and then walks to the city park. What is the least number of blocks Ben walked?