Answer:
Modulus operator are useful in many circumstances and it is commonly used to generate the random number. It basically reduce the number into random number in a small range.
It also describe that whether, the one number is a factor of another or not.
In C language, the modulus operator provide the remainder after diving the greater value with the smaller value. If the smaller number are divided by the larger number then, the quotient become zero.
Answer:
The number of characters to shift each letter in the alphabet.
Explanation:
Caeser Cipher is the technique of encryption of data, to make it secure by adding characters between alphabets. These are the special characters that make the message secure while transmitting.
According to the standards, For Decryption, we remove these special characters between alphabets to make message understandable.
<em>So, we can say that,to de-crypt the message, the number of characters to shift each letter in the alphabet.</em>
Code:
def interest():
interest_rate = 0.06
investment = input(int('Investment: '))
yield = 0
year = 0
while (yield < investment):
year += 1
yield = investment * interest_rate
print (year)
NOTE: i wrote this code assuming that the investment for the next year is the same as the first year and so forth
hola no conozco el toldo, pero necesito puntos cerebrales tan lo siento
Explanation: