Answer:
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
double PI_D = 3.14159256359;
float PI_F = 3.14159256359;
cout<<"i"<<"\t\t"<<"Float"<<"\t\t"<<"Double"<<endl;
for(int i = 1; i<=10;i++)
{
cout<<i<<"-\t\t"<<PI_F<<setprecision(i)<<"-\t\t"<<PI_D<<setprecision(i)<<endl;
}
return 0;
}
Explanation:
See Attachment where I used comments for explanation
D).
Linguist is the study all about a language spoken written and the modern ways of using it via slang etc.
<u>Answer:</u>
My suggestions are given below:
<em>Method 1:</em> Can create series of questions from book-inside and take an open-book test. Open-book test method is one of the best way to learn
<em>Method 2:</em> Written test is always necessary to really understand how much they remember the concept
<em>Method 3:</em> Participate in online quiz related to the learning outcome given in the question
<em>Method 4: </em>Answer questions from the reference books
<em>Method 5:</em> Go to library or review online books for further study.
Hubs are very simple devices that connect network components, sending a packet of data to all other connected devices.
Hubs are relatively basic network connectors that send a packet of data to every other connected device. Compared to a hub, a switch is more intelligent and has the ability to filter and forward data to a specific location. Within various networks, switches are utilized. Nodes of the network are any computers or printers connected to it. A network workstation is a personal computer that is linked to a network (note that this is different form the usage of the term workstation as a high-end microcomputer). Nodes of the network are any computers or printers connected to it. A network workstation is a personal computer that is linked to a network.
Learn more about network here-
brainly.com/question/24279473
#SPJ4
Answer and Explanation:
def loop(start, stop, step):
return_string = ""
if step == 0:
step = 1
if start > stop: # the bug was here, fixed it
step = abs(step) * -1
else:
step = abs(step)
for count in range(start, stop, step):
return_string += str(count) + " "
return return_string.strip()