Answer:
The <u>Split</u> option under the <u>view</u> tab.
Explanation:
Click the <u>View</u> tab on the Ribbon, then select the <u>Split</u> command. The workbook will be <u>split into different panes</u>. You can scroll through each pane separately using the scroll bars, allowing you to <u>compare different sections of the workbook.</u>
Answer:
software is a program that enables to comuter perform as a specific task as opposed to the physical component of the system hardware.
it is classified into two type .
system software
application software
Answer: 42 is the answer to everything and just remember, Don,t panic.
For i am the hitch hikers guide to the galaxy.
Explanation:
Answer:
import regex as re
def in_parentheses(a_string):
regeX = re.compile(".*?\((.*?)\)")
result = re.findall(regeX, a_string)
return str(result).replace("[","").replace("]","")
print("test 1: "+in_parentheses("Open ( only"))
print("test 2: "+in_parentheses("This is a sentence (words!)."))