Commonly known as book stapling, ‘saddle stitched’ is one of the most popular binding methods. The technique uses printed sheets which are folded and nestled inside each other. These pages are then stapled together through the fold line. Saddle stitched binding can be applied to all book dimensions and both portrait and landscape orientation.
Answer:
solution
Explanation:
The correct option is - solution
Reason -
To solve a problem,
Firstly we give input , then system will process that input which then gives output.
Solution is not a part of the process.
So, Solution is not a significant part of a simple problem.
Because then the line is proper as opposed to if the line is improper. If the line is improper, then it has no manners and you can't invite it to dinner with your family because it will be rude and your mother would be offended.
A <u>file server </u>allows many users to share the same set of files on a common, shared disk drive.
<h3>What is the type of reliable file server used in many networks?</h3>
A LAN can have many additional types of dedicated servers. Four common types are file servers, database servers, print servers, and contact servers.
File servers permit many users to share the same set of files on a common, shared disk drive.
<h3>What is a server used for?</h3>
A server stores send and receive data. In essence, it "serves" something else and exists to supply services. A computer, software program, or even a storage apparatus may act as a server, and it may supply one service or several.
To learn more about file server , refer
brainly.com/question/24243510
#SPJ4
Answer:
The code to this question can be given as:
Code:
int n=5; //define an integer variable n and assign a positive value.
while(n > 0) //define while loop,
{
printf("*"); //print asterisks.
n --; //decrements value.
}
Explanation:
The description of the above code can be given as:
- In this code we define an integer variable that is "n" and assign a positive value that is "6".
- Then we define a while loop. It is an entry control loop which means it will check condition first then executes. In this loop, we use variable n and check condition that the value of n is greater than 0.
- In this loop, we print the asterisks and decrease the value of n. When the variable n value is 0. It will terminate the loop and print asterisks.