Answer:
I think make a copy maybe
Explanation:
Answer:
The correct option is;
A) Device manufacturers store the initial file-system data structures in the device.
Explanation:
Before a storage device can be used for data storage, it is required to prepare the device for use and to make the device to become visible to the operating system by formatting of the device
New storage devices are not pre-formatted or come with a ready to use file system as there are different file systems specifically designed for particular operating systems or operating environment.
Formatting creates partitions, makes the hard drive visible to the operating system and creates a file system that is new such that the storage device can be used for storing files.
Scalar Values are single numbers or values, which may include integers, floating-point decimals, or strings of characters.
A(n) array is a group of scalar or individual values that are stored in one entity.
A(n) user-defined type is a data type that is assigned a true or false value by a programmer.
A(n) abstract data type is a data type that can be assigned multiple values.
import random
rock,paper,scissors = 1,2,3
choice = int(input("Please choose 1 2 or 3: "))
computer = random.randint(1,3)
player_won = False
draw = False
if choice == computer:
draw = True
elif choice == 1 and computer == 3:
player_won = True
elif choice == 2 and computer == 1:
player_won = True
elif choice == 3 and computer == 2:
player_won = True
if player_won:
print("You won!")
elif not player_won and not draw:
print("The computer won!")
else:
print("It's a draw!")
First, I recommend importing at the beginning of your program. Also, you can combine all your same datatype variables in one line. You also need to cast your user choice to an integer so you can compare it with the computer's choice. I wrote the if, elif, and else statements using a boolean variable. I simply wrote all the possibilities that would result in the player winning and this would result in the player_won variable being true. If this is the case, we print to the console, "You won!"
The answer should be none of the above
Take windows 10 for example
It has cmd and desktop and icons and menus