Answer:
I think its screenplay
Explanation:
Firstly, the question starts with an a so it can't be b. And format can't be repeated. Which leaves us with screenplay.
Hope this helps.
Answer:
Explanation:
The following code is written in Python. It asks the user for an input. Then cleans the input using regex to remove all commas, whitespace, and apostrophes as well as making it all lowercase. Then it reverses the phrase and saves it to a variable called reverse. Finally, it compares the two versions of the phrase, if they are equal it prints out that it is a palindrome, otherwise it prints that it is not a palindrome. The test case output can be seen in the attached picture below.
import re
phrase = input("Enter word or phrase: ")
phrase = re.sub("[,'\s]", '', phrase).lower()
reverse = phrase[::-1]
if phrase == reverse:
print("This word/phrase is a palindrome")
else:
print("This word/phrase is NOT a palindrome")
The answer is Tags, sorry about putting the other answer misread question.
By sending persuasive / informable and interesting posts to gain followers.
Answer:
False
Explanation:
Input/output devices do NOT transfer information in only one direction.
Input devices receives the information while the output devices sends the information. The direction of the information being transferred between the input and output is NOT just in one direction.
Examples of input devices are keyboard, mouse, joy stick, scanner, etc.,
Examples of output devices are monitor (LED, LCD, CRT etc), printers (all types), plotters, projector, speaker(s), head phone, etc.