Based on the Microsoft Excel data validation, the option that is not an Error Style for data validation is the <em><u>choice that does not show an error alert.</u></em>
Given that there is no option available, the best way to answer this question is to show the types of Error Styles for data validation available.
<h3>Different types of Error Style for data validation</h3>
- Stop style: this will bring the option of "Retry, " "Cancel, " and "Help."
- Warning style: this will show "Continue," with options of "Yes," "No," "Cancel," and "Help."
- Information Style: this will ask you to input the whole number with the option of "Ok," "Cancel," and "Help."
Hence, in this case, it is concluded that the Error Style for data validation is Stop, Warning, and Information Style.
Learn more about Error Style for data validation here: brainly.com/question/18497347
Answer:
A hard drive
Explanation:
Since tablets and phones are compact, they are better off not having a big, giant, bulky storage device like hard drives. Modern computing made hard drives less important by developing Solid-State Drives (SSDs) and extremely dense (512 bit) storage that can provide the same if not more storage than a traditional hard drive at the fraction of the size.
Answer:
what is the question and answers?
I'm sorry whats your question?
Answer:
from random import randint
num = randint(1,10)
count =0
while count<3:
userNum = int(input("Guess a Number "))
if num ==userNum:
print("You won")
break
else:
print("Wrong try again")
count = count+1
Explanation:
Import randint from random
generate a random number between (1,10) and assign to num
create a loop control variable count set to 0
In a While statement with the condition count<3 prompt user to make a guess
if guess is correct print you won and break
else print wrong try again and increase count by 1