Answer:
create a restore point
Explanation:
Which is a potential disadvantage of emerging technologies? A. increased spread of misinformation due to advanced communication technologies B. inefficient usage of energy due to advanced manufacturing technologies C. only benefiting developed countries rather than developing ones D. slowing down global economic growth
Answer: I believe it’s D.
Explanation: Less developed countries may not be able to afford the new technology, while more developed ones will be able to do so. Meaning the less developed countries will most likely not change.
Write a function charInWord that takes in two parameters, a char (character) and a word (string). The program will return true if the character is in the word and false if it is not. If word is not a string type, or if char is not a string type, or if the length of char is greater than 1, the function should return None. Your main program should call the function and print char is in word if the function returns true, or char is not in word if the function returns false, using the user-supplied values instead of char and word. The program should print incorrect input provided if the function returns None. Ex: If the input is: a cat the output is: a is in cat Ex: If the input is: a club the output is: a is not in club Ex: If the input is: ab horse the output is:
Answer:
The program in Python, is as follows:
def charInWord(chr,word):
if len(chr)>1:
print("None")
elif not(chr.isalpha() and word.isalpha()):
print("None")
else:
if word.find(chr) == -1:
print(chr+" is not in "+word)
else:
print(chr+" is in "+word)
chr = input("Character: ")
word = input("Word: ")
print(charInWord(chr,word))
Explanation:
This defines the function
def charInWord(chr,word):
This checks if the length of character is greater than 1
if len(chr)>1:
If yes, it prints None
print("None")
This checks if the character or the word contains invalid character
elif not(chr.isalpha() and word.isalpha()):
If yes, it prints None
print("None")
This is executed for valid parameters
else:
If the character is not present, this is executed
if word.find(chr) == -1:
print(chr+" is not in "+word)
If the character is present, this is executed
else:
print(chr+" is in "+word)
The main begins here
This gets the character
chr = input("Character: ")
This gets the word
word = input("Word: ")
This calls the method and prints the required output
print(charInWord(chr,word))
A gui allows you to interact with objects on the screen such as icons and buttons true or false
Answer:
True
Explanation:
Junie is researching Ancient Egypt. She found a website that is full of information and great
images. As she is reading the text, she notices that there are little bits of information that don't
really agree with any of the other research she has done. What should she do?
O Use the website. Most of the information seems correct.
OUse only the information that she needs and ignore the information that doesn't seem right.
O Ask her friend what he thinks about the website.
O Evaluate the site using the CARS checklist to see if the site is valid and reliable.
Answer: Evaluate the site using the CARS checklist to see if the site is valid and reliable.
Explanation: