try:
num = int(input("Enter a number: "))
print(12*num)
except ValueError:
print("Please enter a number!")
I wrote my code in python 3.8
Answer:
0.01 second ; 0.008 seconds; 800 seconds
Explanation:
Given that:
Sending rate = 1000 bps
Rate of 1000 bps means that data is sent at a rate of 1000 bits per second
Hence, to send out 10 bits
1000 bits = 1 second
10 bits = x
1000x = 10
x = 10 / 1000
x = 0.01 second
2.)
A single character 8 - bits
1000 bits = 1 second
8 bits = (8 / 1000) seconds
= 0.008 seconds
3.)
100,000 characters = (8 * 100,000) = 800,000
1000 bits = 1 second
800,000 bits = (800,000 / 1000)
= 800 seconds
Backstage view can be added to the Developer tab to the ribbon by Options setting
<u>Explanation:</u>
On the File tab, go to Options > Customize Ribbon. Under Customize the Ribbon and under Main Tabs, select the Developer checkbox. To show the tab, click on the File menu and afterward select Options starting from the drop menu. At the point when the Excel Options window shows up, click on the Customize Ribbon alternative on the left.
Snap on the Developer checkbox under the rundown of Main Tabs on the right. At that point click on the OK button. Right-Click on the Ribbon and select Customize the Ribbon. On the correct side of the exchange take care of that pops is a rundown of Ribbon tabs, Check the container for the Developer tab.
I'm gonna help you out here by writing the jist of the loop that youll need because you may have to write this in c or java or python so all you need to do is create an array thats the same size as the array you want to duplicate and a for loop
int main ( ) {
int i,b [5],a [5] ={1,2,3,5,7};
for(i=0;i <5;i++)
{
b [i]=a [i];
}
return 0;
} //hope this helps :)
The purpose for a private is that if you don't want anyone to know your location, like if you live in a house and don't want people to know where you live. A public is if you do. Like for a business.