We need to know what item and then we can answer ur question
Answer:
Explanation:
The following code is written in Python. It is a function called guessMyNumber and like requested creates a random number and saves it to secretNumber. Then it continuously asks the user for their guess and compares it to the secret number. If the guess is correct it exits the loop otherwise it will continue to ask for a new guess.
import random
def guessMyNumber():
secretNumber = random.randint(1, 10)
print(secretNumber)
while True:
guess = input("Enter your guess: ")
guess = int(guess)
if (guess == secretNumber):
print("Congratulations you guessed correctly")
Answer:
<em>b. There’s a hidden partition.
</em>
Explanation:
The hidden partition <em>is a separate section set aside on OEM computer hard drives, often alluded to as the recovery partition and restore partition.</em>
This portion of memory is used by the manufacturer to preserve the data used to restore your computer to its default settings.
This function is particularly useful as it does not involve the CD or DVD of the operating system.
Answer:
should be commission
Explanation: i took this class a while back, hope this helps man
<span>A formal system of coded commands that provide instructions for a computer are
programming languages.
Correct answer: C
</span><span>The programming language specifies a set of instructions that can and should be used to guide a </span><span>computer to perform specific tasks and </span><span>produce a certain output.
</span>