Answer:
peer to peer
Explanation:
Here, we want to select which of the options best answer the question.
The answer is peer to peer
The peer to peer network configuration is a type in which each computer can work as a client, a server or both
Thus , in a peer to peer network configuration, we can have the computer systems on this network having the possibility of working as either the client, the server or both of them simultaneously
The answer is A. Bacteria leave a thanks if i am correct please.
Answer:
Excel 2016 is primarily a spreadsheet program.
Explanation:
Excel 2016 is a new version of the Microsoft Office which is available in Microsoft Office 2016. It is a spreadsheet program that has been run by windows platform.
- A spreadsheet program that represents the data into a sheet of paper that shows data in rows and columns.
- This software is used to construct calculation-specific text tables, numbers, and equations.
ANSWER:
1)i. The relationship is a degree of 2 ( i.e Binary). The cardinality of the relationship is One-to-Many.
ii. The model is from piano description to piano manufacturer.
PIANO:
Model name
Model number
Serial number
Manufacturing completion date
MANUFACTURER:
Ebony and Ivory
2)i. The relationship is a degree of 2 ( i.e Binary). The cardinality of the relationship is Many-to-Many.
ii. The model is from piano description to Technician.
PIANO:
Model name
Model number
Serial number
Manufacturing completion date
TECHNICIAN
Employee number
Specialty
3)i. The relationship is a degree of 2 (i.e Binary). The cardinality of the relationship is Many-to-One.
ii. The model is from Technician to Technician
TECHNICIAN:
Lower rank
TECHNICIAN:
Higher rank
The code segment makes use of conditional statements.
Conditional statements in programming are used to make decisions
The code segment in C++ is as follows
if (score > 90) {
grade = 'A';
}
else if (score >= 80 && score < =90) {
grade = 'B';
}
else {
grade = 'C';
}
The above code segments take the score, make comparison, and then determine the appropriate letter grade.
Read more about code segments at:
brainly.com/question/20475581