Answer:
,jbfuuuyghjk ugvvvtyi uob
Explanation:
flwgrweg
The answer is embedded computer. It is a PC framework with a committed capacity inside a bigger mechanical or electrical framework, frequently with ongoing figuring constraints. It is implanted as a component of a total gadget regularly including equipment and mechanical parts. Installed frameworks control numerous gadgets in like manner utilize today.
<u>Explanation:</u>
a.
- One user can read the private data of another user-privacy.
- One user can prevent another user from getting anything done-denial of service.
Indeed, in any multiprogramming and time-sharing environment since the computers of users are networked together, then it is very possible for a bad actor to read the private data of another user, or even prevent another user from accessing their computer by employing a denial of service attack on the network. In other words, the network would be unable to handle the request of users since has been overloaded by another user.
b. a. Yes - if we can ensure that the operating system prevents any sharing of data between users, either for reading or writing and fairly shares the computer, then we can achieve the same level of security.
import random
heads = 0
tails = 0
i = 0
while i < 1000:
rnd_value = random.randint(1, 2)
if rnd_value == 1:
heads += 1
print("heads")
else:
tails += 1
print("tails")
i += 1
print("Heads appeared {} times and tails appeared {} times".format(heads, tails))
I hope this helps!
Answer:
comma
Explanation:
The for loop is used to execute the specific statement again and again until the condition is false.
The syntax:
for(initialization;condition;increment/decrement)
{
statement;
}
In the initialization, we an initialize more than one variable by using the 'comma' as separator.
similarly for condition and increment/decrement part as well.
for example:
for(int x = 0,y = 0;x<5,y<5;x++,y++)
{
statement;
}
we can used as many as possible by using comma