Answer:
Windows
Explanation:
The operating system that would be appropiate for Jenny's personal computer is Windows as it is easy to use, the software and programs she is going to need are easily available to install in this operating system and it allows people to interact with it through keyboard and mouse.
Answer:
the answer is c) microsoft windows
Explanation:
B. Monitor and keyboard
C. Speakers and monitor
D. Keyboard and mouse
Answer:
D
Explanation:
The factor which determines the structure as well as features of an information system used throughout an organization is referred to as Competitive Strategy.
The competitive strategy of a company is concerned with how to compete in the business sectors wherein the company participates as well as operations.
In other terms, competitive strategy defines how well a company expects to develop as well as sustain a competitive edge over competitors.
Thus the above answer i.e., "option A" is correct.
Find out more information about competitive strategy here:
Answer:
The correct option is A: Competitive Strategy
Explanation:
The competitive strategy of an organization is the factor that determines the function, feature and structure of the information system that will be used. The value of its brand has nothing to do with the form of info system to be used, neither is the size of the company a determinant factor of the information system to be used. You cannot determine your own information system structure and function by that of a competitor. Hence the correct option is A. In every organization, the information system has great impact on competitive advantage in differentiation or cost.
1. Random secret number from 1 to 10 or any larger range if you want.
2. Two players will guess
3. Determine who was closest.
4. Display the results of the round in a neat and organized fashion.
5. Add some kind of style to your print outs so that your display is nice
In python 3+:
import random
secret_number = random.randint(1,10)
guess_one = int(input("Enter player one's guess: "))
guess_two = int(input("Enter player two's guess: "))
if abs(guess_one - secret_number) < abs(guess_two - secret_number):
print(f"The secret number is {secret_number} and player 1 was closest")
elif abs(guess_one - secret_number) > abs(guess_two - secret_number):
print(f"The secret number is {secret_number} and player 2 was closest")
else:
print(f"The secret number is {secret_number} and it was a tie")
I hope this helps!