1.
name = input("Enter your name: ")
num1 = int(input("Hello "+name+ ", enter an integer: "))
num2 = int(input(name+", enter another integer: "))
try:
if num1 % num2 == 0:
print("The first number is divisible by the second number")
else:
print("The first number is not divisible by the second number")
except ZeroDivisionError:
print("The first number is not divisible by the second number")
try:
if num2 % num1 == 0:
print("The second number is divisible by the first number")
else:
print("The second number is not divisible by the first number")
except ZeroDivisionError:
print("The second number is not divisible by the first number")
2.
import random, math
num1 = float(input("Enter a small decimal number: "))
num2 = float(input("Enter a large decimal number: "))
r = round(random.uniform(num1, num2), 2)
print("The volume of a sphere with radius " + str(r) + " is " + str(round(((4 / 3) * math.pi * (r ** 3)), 2)))
I hope this helps!
Answer:Amino Acid
Explanation:
All proteins have amino acids
Answer:
Percent encoding is the mechanism for encoding the information in the URI (Uniform resource identifier) that basically transmitted the special variable or characters in the URI to the cloud platform.
It is also used in various application for transferring the data by using the HTTP requests.
Percent encoding is also known as uniform resource locator (URL) encoding. The percent encoding basically used to convert the non ASCII characters into URL format which is basically understandable to the all the web server and browsers. In percent encoding the percent sign is known as escape character.
Answer:
1. More access to data
2.convenience
3. Easy creation of BI solutions
4. Report creation
5. Saves time
Explanation:
A data warehouse can be described to be an electronic storage system that contains large amount of facts and information which sources for and also maintains data from different sources; either external or internal.
The most important reason for a data warehouse is for it to store great amounts of data to be used for query and also to be used for analysis.
Why do we use a data warehouse?
1. Users have more access to data due to the integration of various sources of data. It makes use of real time data facts
2. You can conveniently store and also create metadata
3. Business intelligence solutions can easily be created using data warehouses.
4. Users can easily create their own reports
5. Data warehouses makes accessing different data sets faster. It is a time saver as business users are not going to spend time trying to retrieve data from various sources.
Answer:
Sequence Numbers
Explanation:
In the transmission control protocol, the sequence number are used to put data back in order.
It is the number pattern that follows sequence. This is the number pattern which interprets data before they are returned by the recipient as an acknowledgement with its numbers.
When a sent data is out of order, the sequence number works towards correcting the sequence before sending its acknowledgement.