Creating a list of keywords and using them throughout your
site helps move pages up the ranks of search engines like Bing or Google. They
also attract website visitors. Technically, maintaining a list of keywords
while creating a webpage is important in search engine optimization.
Answer:
4 GB
Explanation:
<u>Determine the maximal size of a file </u>
100 direct block address
= 100 * 1024 = 102400
One single indirect block address
= 128 * 1024 = 131072
One double indirect block address
= 128 * 128 * 1024 = 16777216
one triple indirect block address
= 128 * 128 * 128 * 1024 = 2147483648
one quadruple indirect block addresses
= 128 * 128 * 128 * 128 * 1024 = 274877906944
maximal size of the file
= ∑ 102400 + 131072 + 16777216 + 2147483648 + 274877906944
= 4GB
HTML: Hypertext Markup Language. It's used in conjunction with CSS (Cascading Style Sheets), which implements presentation (adding color, positioning elements, etc.) and JavaScript (you'll often see this referred to as JS), which implements functionality (like clicking on buttons) for webpages.
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!)."))