Answer:
numeric
Explanation:
The decimal data type is an exact numeric data type defined by its precision (total number of digits) and scale (number of digits to the right of the decimal point).
I hope this answers your question.
Answer:
1. do not give out your age
2. don't use your real name unless you are supervised
3.dont put all your information out there
Answer:
def prime_generator(s, e):
for number in range(s, e+1):
if number > 1:
for i in range(2, number):
if (number % i) == 0:
break
else:
print(number)
prime_generator(6,17)
Explanation:
I believe you want to ask the prime numbers between s and e.
- Initialize a for loop that iterates from s to e
- Check if the number is greater than 1. If it is, go inside another for loop that iterates from 2 to that number. If the module of that number to any number in range (from 2 to that number) is equal to 0, this means the number is not a prime number. If the module is not equal to zero, then it is a prime number. Print the number
Answer:
_____Router___ allows the cloud controller to locate instances on separate zones to boost redundancy.
Explanation:
A router, as a networking device, forwards data packets between one computer network and other networks. With a router, one can use wired and wireless devices to connect to the Internet. Unlike a modem, which connects the home network to a wider internet, a router can enable the networks to interact with one another without using the Internet.