Depending on which computer you have you can go into settings and check the data tab or it should be on the box how much it comes with :)
        
                    
             
        
        
        
Answer:
b. a variable
Explanation:
A variable holds a specific type of data
 
        
             
        
        
        
Answer:
userInput = input("Please enter a string of words ")
userInput.split ()
for item in userInput.split ():
    if item =="darn":
        print("Censored")
        break
else:
    print(userInput)
Explanation:
Using Python programming language, the input function is used to receive the users input and save in a variable userInput
Then the .split method is used to convert the words into a list of words.
Using a for loop, the code checks for the word darn and prints censored if it exists else it prints the userInput
 
        
             
        
        
        
The best reason that the title of an article published on a website might not help to determine if the information is reliable is that titles attract readers; they do not guarantee accuracy
- The title of an article tells the reader what the work or article is all about. It summarizes the whole work into a single text. Website in bid to attract more people to their page most times uses attractive titles or commonly search words but this does not show that the work is accurate.
- People often make or select a title that grabs attention and one that makes people want to read further
Conclusively we can say that The title of an article published on website is meant to attract readers as they do not guarantee accuracy
Learn more from 
brainly.com/question/11427677
 
        
             
        
        
        
Answer:
where are the options ..... to select