Answer:
A cyber crime
Explanation:
Cyberstalking is a type of cybercrime that uses the internet and technology to harass or stalk a person. It can be considered an extension of cyberbullying and in-person stalking.
There are actually a couple of questions in here. I'll try to answer them in Python, which kind of looks like psuedocode already.
1. Design a loop that asks the user to enter a number. The loop should iterate 10 times and keep a running total of the numbers entered.
Here, we declare an empty array and ask for user input 10 times before printing a running total to the user's console.
<em>numbers = []
</em>
<em>for i in range(10):
</em>
<em> numbers.append(input("number: ")) </em>
<em>print(f"running total: { ', '.join(numbers) }")</em>
<em />
2. Design a program with a loop that lets the user enter a series of numbers. The user should enter -99 to signal the end of the series. After all the numbers have been entered, the program should display the largest and smallest numbers entered.
Here, we declare an empty array and ask for user input forever until the user types -99. Python makes it really easy to get the min/max of an array using built-in functions, but you could also loop through the numbers to find the smallest as well.
<em>numbers = []
</em>
<em>while True:
</em>
<em> n = int(input("number: "))
</em>
<em> if n == -99: </em>
<em> break
</em>
<em> numbers.append(n)
</em>
<em>print(f"largest number: { max(numbers) }")
</em>
<em>print(f"smallest number: { min(numbers) }") </em>
<em />
Answer:
In half duplex mode, the signal is sent in both directions, but one at a time. In full duplex mode, the signal is sent in both directions at the same time. In simplex mode, only one device can transmit the signal. In half duplex mode, both devices can transmit the signal, but one at a time.
Answer: Compared to a Caesar shift, the random substitution cipher offers many more possibilities, because the encryption is randomly chosen.
Explanation:
A Caesar Cipher is also a type of substitution cipher, but instead of doing it randomly, it shifts the alphabet by a certain number of characters. Therefore, the answer to decrypt the message is simply to figure out that number.