Answer:
It is called the ENQUIRE database
Explanation: got it right boooiiiii
Answer:
num = int(input("enter a number:"))
print(num * 8)
Explanation:
num is just a variable could be named anything you want.
if code was like this num = input("enter a number:")
and do a print(num * 8)
we get an error because whatever the user puts in input comes out a string.
we cast int() around our input() function to convert from string to integer.
therefore: num = int(input("enter a number:"))
will allow us to do print(num * 8)
Answer:
XML (Extensible Markup Language):
Explanation:
XML (Xtensible Markup Language):
It is a markup language that is used for creating web-pages, it defines a set of rules that makes it readable both to humans and machine.
XML was primarily designed to be a software and hardware independent tool and it's focus was on data. XML provides a framework for defining markup languages.
XML, HTML and XHTML are all related to each other because they are all markup languages and can be used to build websites.
Basically,
-HTML is primarily for web-pages.
-XML is primarily for data.
-XHTML is a standard based on HTML that follows the strict rules of XML.
D. <span>You have just used the Undo function to delete a paragraph, and you want that paragraph back.</span>