what are the benefits of networked computing​

Answers

Answer 1

Answer:

The ability to select the most appropriate computer networking technique.

Accessibility is a plus.

Reduce software expenses.

Make use of a database that is centralized.

Keeping sensitive information safe.


Related Questions

Select the correct answer from each drop-down menu.
According to the IEEE guidelines, what is required to find a large amount of reference information during documentation?

According to the IEEE guidelines, a/an___________ is required to help ________ A large amount of reference information during documentation

Options for the first box:list of page numbers, index, glossary

Options for the second box: locate, list, summarize

Answers

Answer:

glossary

summarize

Explanation:

i am positive that this is correct

According to the IEEE guidelines, a glossary is required to help summarize a large amount of reference information during documentation.

What are the IEEE guidelines?

IEEE guidelines are the manual for the editorial guidelines of IEEE transaction, letters, journals, etc.

The edits include punctuation, capitalization, abbreviations, biographies, etc.

Thus, the correct options are glossary and summarize.

Learn more about IEEE guidelines

https://brainly.com/question/17030694

#SPJ2

A computer consists of both software and hardware. a)Define the term software​

Answers

Answer: We should first look at the definition of the term software which is, “the programs and other operating information used by a computer. Now looking at this we can break this definition down. Software, are instructions that tell a computer what to do. Software are the entire set of programs, procedures, and routines associated with the operation of the computer. So pretty much to sum it up software is the set of instructions that tell the computer what to do, when to do it, and how to do it.

Have a nice day!

Answer/Explanation:

We should first look at the definition of the term software which is, “the programs and other operating information used by a computer. Now looking at this we can break this definition down. Software, are instructions that tell a computer what to do. Software are the entire set of programs, procedures, and routines associated with the operation of the computer. So pretty much to sum it up software is the set of instructions that tell the computer what to do, when to do it, and how to do it.

In a language JUNGLE is codded as UJNGEL then how will BANDID is codded?​

Answers

[tex]\huge\tt\underline\pink{BANDID\:✒\:ABNDDI\:✅}[/tex]

Step-by-step explanation:-

J ⇢ [tex]\sf\purple{U}[/tex]

U ⇢ [tex]\sf\purple{J}[/tex]

N ⇢ [tex]\sf\red{N}[/tex]

G ⇢ [tex]\sf\red{G}[/tex]

L ⇢ [tex]\sf\blue{E}[/tex]

E ⇢ [tex]\sf\blue{L}[/tex]

The first two letters [tex]\sf\purple{"J"}[/tex] and [tex]\sf\purple{"U"}[/tex] are interchanged and they take each other's place respectively. The third and fourth letters [tex]\sf\red{"N"}[/tex] and [tex]\sf\red{"G"}[/tex] maintain their position. The fifth and sixth letters [tex]\sf\blue{"L"}[/tex] and [tex]\sf\blue{"E"}[/tex] also take each other's place respectively.

Following the above sequence, we have

B [tex]\sf\purple{A}[/tex]

A [tex]\sf\purple{B}[/tex]

N [tex]\sf\red{N}[/tex]

D [tex]\sf\red{D}[/tex]

I [tex]\sf\blue{D}[/tex]

D [tex]\sf\blue{I}[/tex]

[tex]\circ \: \: { \underline{ \boxed{ \sf{ \color{green}{Happy\:learning.}}}}}∘[/tex]

Collin wants to insert and center a title at the top of his spreadsheet. Collin should _____.


A. highlight the cells in row 1, select Center command, and type the title

B. type the title in cell A1 and click on the center icon

C. select cells in row 1, select the Merge and Center command, and type the title

D. click on cell A5 and type the title

Answers

Answer:

C. select cells in row 1,select the merge and center command, and type the title.

Define the following terms: Staff authority ,in your own words.

Answers

Answer:

To provision advise for other services to line managers.

Explanation:

Question:

Define Staff authority

Explanation:

Line managers receive counsel and other services from staff authority. Senior managers must exercise caution when it comes to restricting the number of employee employment. A company might end up with an excessive level of corporate overhead if this does not happen.

------------------------

hope it helps...

have a great day!!

Rate these 3 fnaf characters from 1-3 tell me who you find the scariest as well
MICHEAL AFTON CIRCUS BABY GOLDEN FREDDY

Answers

Answer:

Golden Freddy is the scariest in my opinion

Answer:

Micheal Afton=3/3

Circus Baby=3-3

Golden Freddy=2/3

In my opinion, I'd say Circus Baby because of how her voice sounds like.

Match the parts of a CPU to their functions.

-control unit
-ALU
-register
Is a temporary data storage unit
manages data transfer operations
performs arithmetic and logical operations on input data

Answers

Answer:

CPU performs arithmetic and logical operation on input data

The way it is the performs

Does anyone play genshin impact here?

Answers

Answer:

what server are u on

Explanation:

yes i do play itttttttttttttttttttttt

how do i give brainliest? if what you say works i'll give de brain

Answers

two people have to answer the question and at the bottom of the question you'll see a crown and you just click on that to give them brainliest

Answer:

When Two people answer a question A crown should appear at the bottom where you find the buttons like and rat/e so once you click it the crown will go to the top of the question of the question that you think is the best.

Explanation:

-------- C++ ------

Assume you need to test a function named inOrder. The function inOrder receives three intarguments and returns true if and only if the arguments are in non-decreasing order: that is, the second argument is not less than the first and the third is not less than the second. Write the definition of driver function testInOrder whose job it is to determine whether inOrder is correct. So testInOrder returns true if inOrder is correct and returns false otherwise.

For the purposes of this exercise, assume inOrder is an expensive function call, so call it as few times as possible!

-------------------------------------------

Assume you need to test a function named max. The function max receives two int arguments and returns the larger. Write the definition of driver function testmax whose job it is to determine whether max is correct. So testmax returns true if max is correct and returns false otherwise.

------------------------------------------

Write a program that will predict the size of a population of organisms. The program should ask the user for the starting number of organisms, their average daily population increase (as a percentage, expressed as a fraction in decimal form: for example 0.052 would mean a 5.2% increase each day), and the number of days they will multiply. A loop should display the size of the population for each day.

Input Validation.Do not accept a number less than 2 for the starting size of the population. If the user fails to satisfy this print a line with this message "The starting number of organisms must be at least 2.", display the prompt again and try to read the value. Similarly, do not accept a negative number for average daily population increase, using the message "The average daily population increase must be a positive value." and retrying. Finally, do not accept a number less than 1 for the number of days they will multiply and use the message "The number of days must be at least 1."

Answers

Answer:

The function testInOrder is as follows:

bool testInOrder(){

bool chk= false;

   int n1, n2, n3;

   cin>>n1;cin>> n2; cin>> n3;

   if(n2>=n1 && n3 >= n2){chk = true;}

   bool result = inOrder(n1,n2,n3);

   if(result == chk){ return true;}

   else{return false;}

}

The function testmax is as follows:

bool testmax(){

   bool chk = false;

   int n1, n2;

   cin>>n1; cin>>n2;

   int mx = n1;    

   if(n2>=n1){        mx = n2;    }

   int returnMax = max(n1,n2);

   if(returnMax == mx){        chk = true;            }

   return chk;

}

The prediction program is as follows:

#include <iostream>

using namespace std;

int main(){

   int startSize,numDays;

   float aveInc;

   cout<<"Start Size: ";

   cin>>startSize;

   while(startSize<2){

       cout<<"The starting number of organisms must be at least 2.";

       cin>>startSize;    }

   cout<<"Average Daily Increase: ";

   cin>>aveInc;

   while(aveInc<1){

       cout<<"The average daily population increase must be a positive value.";

       cin>>aveInc;    }

   cout<<"Number of days: ";

   cin>>numDays;

   while(numDays<1){

       cout<<"The number of days must be at least 1.";

       cin>>numDays;    }

   for(int i = 0;i<numDays;i++){        startSize*=(1 + aveInc);    }

   cout<<"Predicted Size: "<<startSize;

}

Explanation:

testInOrder

This defines the function

bool testInOrder(){

bool chk= false;

This declares all three variales

   int n1, n2, n3;

This gets input for the three variables

   cin>>n1; cin>>n2; cin>>n3;

This correctly check if the numbers are in order, the result is saved in chk

   if(n2>=n1 && n3 >= n2){chk = true;}

This gets the result from inOrder(), the result is saved in result

   bool result = inOrder(n1,n2,n3);

If result and chk are the same, then inOrder() is correct

   if(result == chk){ return true;}

If otherwise, then inOrder() is false

   else{return false;}

testmax

This defines the function

bool testmax(){

This initializes the returned value to false

   bool chk = false;

This declares the two inputs as integer

   int n1, n2;

This gets input for the two numbers

   cin>>n1; cin>>n2;

This initializes the max of both to n1

   int mx = n1;    

This correctly calculates the max of n1 and n2

   if(n2>=n1){        mx = n2;    }

This gets the returned value from the max() function

   int returnMax = max(n1,n2);

If returnMax and max are the same, then max() is correct

   if(returnMax == mx){        chk = true;            }

   return chk;

}

Prediction program

This declares all necessary variables

   int startSize,numDays;  float aveInc;

This gets input for start size

   cout<<"Start Size: ";    cin>>startSize;

The loop is repeated until the user enters valid input (>=2) for startSize

   while(startSize<2){

       cout<<"The starting number of organisms must be at least 2.";

       cin>>startSize;    }

This gets input for average increase

   cout<<"Average Daily Increase: ";    cin>>aveInc;

The loop is repeated until the user enters valid input (>=1) for aveInc

   while(aveInc<1){

       cout<<"The average daily population increase must be a positive value.";

       cin>>aveInc;    }

This gets input for the number of days

   cout<<"Number of days: ";    cin>>numDays;

The loop is repeated until the user enters valid input (>=1) for numDays

   while(numDays<1){

       cout<<"The number of days must be at least 1.";

       cin>>numDays;    }

The following loop calculates the predicted size at the end of numDays days

   for(int i = 0;i<numDays;i++){        startSize*=(1 + aveInc);    }

This prints the predicted size

   cout<<"Predicted Size: "<<startSize;

The post-closing trial balance shows the balances of only the ____ accounts at the end of the period.
A. liability
B. asset
C. temporary
D. permanent​

Answers

Answer: The post-closing trial balance shows the balances of only the “permanent” accounts at the end of a period. So your answer is D. Permanent.

Have a nice day!

Will Give Brainiest 75pts

Read the following excerpt from "Did You R e a l l y Just Post That Photo?" by Kristin Lewis: There is no way to know for sure if the photos you posted on F a c e b o o k (you know, the ones that got you grounded) are the reason you were denied [college admission]. But you'll always be h a u n t e d by the possibility that the college found them. The fact is, an increasing number of colleges are looking up applicants on social-media sites like F a c e b o o k and Y o u T u b e. If they don't like what they find out about you, you could miss out on a scholarship or even get rejected. Colleges aren't the only ones scouring the Internet for your name either. Potential employers are looking too. An i n a p p r o p r i a t e photo can cost you a job, whether it's the babysitting gig you're hoping to land next week or the internship you will apply for five years from now. Which of the following is a paraphrase of the bolded lines that could be used for note-taking purposes? Applicants use social media to research potential colleges and jobs. Potential employers are looking up applicants online to help make hiring decisions. Social media can negatively impact a user's college and job prospects. "The fact is, an increasing number of colleges are looking up applicants on social-media sites like F a c e b o o k and Y o u T u b e."

Answers

Answer:

it's not C. Social media can negatively impact a user's college and job prospects. I answered that and I got it wrong. I think it might be B, im like 80% sure, so sorry if I'm wrong

hope this helps!

The option that paraphrase  the bolded lines is Potential employers are looking up applicants online to help make hiring decisions.

Is it right for a potential employer to use the Internet in this way?

The use of social media for any kind of monitoring, investigation, and job decision making by the employer is one that is advisable to all.

Conclusively, It is moral to use information that will help one in terms of job performance and if the employer uses the internet in line with their policies and practices, then there is no issue with it.

Learn more about employers from

https://brainly.com/question/26355886

the abuse of children is a symptom of

Answers

Mental issues such as anger issues
the abuse is a anger issue.

An energy source that is bought and sold.​

Answers

Commercial energy sources are bought and sold.

Login
c. Unscramble the following wewards and uurite them
Korrectly win the blandes
1.ELLC:
2. RMULAFO:
3.CTIONFUN:
1. COUMNL:​

Answers

Answer:

1. Cell

2. Formula

3. Function

4. Column

How to mark someone the Brainliest

Answers

Answer:

Explanation: Once u get more than 1 answer of a question. A message is shown above each answer that is "Mark as brainiest". Click on the option to mark it the best answer.

Answer:

above

Explanation:

100 POINTS NEED THIS BEFORE 11:59 TODAY!!!!!!!!!!!!!!!

Answers

Answer:ok be how hobrhkihfehgdhdj fuiufiisefif jfkijfjfhhfhfhfhf

Explanation:

Other Questions
. Simplify: (2 x 2 + 6-10 2) Customers have become increasingly anxious about breaches of privacy, and it is essential for marketing researchers to _________. Group of answer choices conceal consumers' addresses and phone numbers when they share information share information only with the sales department for follow-up respect and protect the privacy of customers without question refer to the company's code of ethics to determine what information can be released All of these Pliss help me ok no links According to the first paragraph, what is the purpose of the Declaration of Independence beyond simply claiming freedom from British rule? Identify the phrase that states this purpose most clearly and relate it to the rest of the document. Which example uses transitional tags to show chronological order?First, you have to find the right kind of rock for your hard hammer. Then, you have to learn how to strike the flint correctly.Dont strike straight down on the rock. Instead, try hitting the rock with a glancing blow so that you push the hammer away from you.In other words, you should never try flint knapping without wearing safety glasses.Unless you are prepared to have sore fingers, wear some gloves the first time you try flint knapping. HELP PLEASE, FIRST ONE GETS A HUGE HUG ^^The air makes up theABiosphereBHydrosphereCGeosphereDAtmosphere Which scatter plot could haveA trend line with the equation below? Y=x+4 Solve the quadratic equation below. Give approximate answer(s).x^2 + 4x + 2 = 0A4.45 and -0.45B-0.59 and -3.413.41 and 0.59D0.45 and -4.45 Which statement is TRUE? A. The Federalists believed the Federal government was too strong B. The new Constitution called for powerful state governments. C. The Anti-Federalists were fearful of the central government. D. Federalists wanted a strong the Bill of Rights Who wrote most of the Declaration of Independence?John AdamsRichard Henry LeeThomas JeffersonBenjamin Franklin What is the measure of angle L rashid is conducting a seminar on the importance of coral reefs which point should he include Which of the following pairs of functions are inverses of each other?O A. 1(x)=2x-11 and g(x) = #11O B. 1(x)= 38 +15 and g(x)-VI-15O C. f(x) - & + 14 and g(x) = 8x-14O D. ((x)=3-6 and g(x) -)3/x+6Helppppp!!! 910. Show the relationship between short-run MC and MP1, and AYC and AP, mathematicallyand graphically (1pts) If Ana spins the spinner 400 times, how many times can she expect to spin green? Assume a bank loan requires an interest payment of $85 per year and a principal payment of $1,000 at the end of the loan's eight-year life. What would be the present value of this loan if it carried an 8.5 percent interest rate? In a classroom, there are 5 girls and 7 boys. What is the chancethat the teacher will choose a girl to answer a question? HELP ASAP WILL GIVE MOST BRANILIST g An electron moves on a direction perpendicular to this page, into this page . The arrow below shows the direction of the magnetic field B present in this region. ----------------> B The direction of the magnetic force acting on the electron is directed can anyone help me solve this