Answer:
import random
paswrd = input("Enter Pass: ")
while len(paswrd) < 8:
print('Password not long enough.')
paswrd = input("Enter Pass: ")
paswrd = paswrd.replace('e', '@')
paswrd = paswrd.replace('E', '@')
paswrd = paswrd.replace('s', '$')
paswrd = paswrd.replace('S', '$')
paswrd = paswrd.replace('t', '+')
paswrd = paswrd.replace('T', '+')
paswrd = paswrd.capitalize()
paswrd = paswrd + (str(random.randint(1,999)))
print(paswrd)
Explanation:
- Take the password as input from user.
- Replace the alphabets with relevant characters.
- Capitalize the password.
- Finally display the password.
Answer:
The answer is "fetch-decode-execute cycle"
Explanation:
The FDE cycle stands for Fetch-Decode-Execute cycle, It is a computing operation, in which a CPU process, to retrieves the system in its order memory form, it also decides that what instruction is supposed to do, and executes certain activities. In this process, the operating system loads the files and the program on a disc to the main memory (RAM).
There’s literally no question here