Answer:
OSI Model and TCP/IP Model
Explanation:
One of the disadvantages of a server-based network compared to a peer-to-peer network is: 1) Additional costs.
<h3>What is a server?</h3>
A server can be defined as a dedicated computer system that is designed and developed to provide specific services to other computer devices or programs, which are commonly referred to as the clients.
<h3>Types of server.</h3>
In Computer technology, there are different types of server and these include the following:
- Web server
- Email server
- File server
- Database server
- Proxy server
<h3>What is a
Peer to Peer (P2P) Network?</h3>
In Computer networking, a Peer to Peer (P2P) network can be defined as a type of network that are designed and developed to connect similar computers that share data and software with each other at lesser cost in comparison with other network service.
In this context, we can infer and logically deduce that one of the disadvantages of a server-based network compared to a peer-to-peer network is additional costs.
Read more on Peer to Peer Networks here: brainly.com/question/1932654
#SPJ1
Complete Question:
What is one of the disadvantages of a server-based network compared to a peer-to-peer network?
1) Additional costs
2) none of these choices
3) Decentralized data access
4) Less secure
5) Difficult to expand
The time that will be used to perform a multiplication using the approach is 28 time units.
<h3>How to calculate time taken?</h3>
From the information given, the following can be noted:
A = 8 (bits wide)
B = 4 time units.
The multiplication will be performed based on the adder stack. Since A = 8, then, A - 1 = 8 - 1 = 7.
Now, the time taken will be:
= 7 × B
= 7 × 4tu
= 28 tu
In conclusion, the correct option is 28 time units.
Learn more about time taken on:
brainly.com/question/10428039
Answer:
OneDrive is a storage location on your personal computer.
Explanation:
Its gives u extra storage as well as helps u to take backup for all ur files that are important to u
Hope this helps...
Pls mark my ans as brainliest
If u mark my ans as brainliest u will get 3 extra points
Answer:
See Explaination
Explanation:
/ Header files section
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <cmath>
using namespace std;
// start main function
int main()
{
// variables declaration
string fileName;
string lastName;
double score;
double total;
double grade;
string description;
// prompt the user to enter the input file name
cout << "Enter the input file name: ";
cin >> fileName;
// open the input file
ifstream infile;
infile.open(fileName);
// exit from the program if the input file does not open
if (!infile)
{
cout << fileName << " file cannot be opened!" << endl;
exit(1);
}
// repeat the loop for all students in the file
infile >> lastName;
while (infile)
{
infile >> score;
infile >> total;
// compute the grade
grade = score / total * 100;
// find the grade's description
if (grade > 90)
description = "Excellent";
else if (grade > 80)
description = "Well Done";
else if (grade > 70)
description = "Good";
else if (grade >= 60)
description = "Need Improvement";
else
description = "Fail";
// display the result of each student
cout << lastName << " " << setprecision(0) << fixed << round(grade) << "% " << setprecision(5) << fixed << (grade * 0.01) << " " << description << endl;;
infile >> lastName;
}
// close the input file
infile.close();
system("pause");
return 0;
} // end of main function