Answer:
hii
Explanation:
can i get a brainlist thennnnnn??
<span>began operating in 1995
shongololo means </span><span> “to roll up”
non- profit organization </span>
The answer is 2. Three. The automatic number of worksheets that appear when you open a blank Excel workbook is three. <span>Excel automatically fills it with three blank worksheets named Sheet1, Sheet2, and Sheet3. Oftentimes, you'll work with the first worksheet (Sheet1), and not realizing that you have two more blank worksheets to work with—not to mention that you could add more.</span>
Answer:
Curly Braces {}.
Explanation:
The syntax for writing a CSS is as following:-
selector {
property : value;
}
CSS is used for providing the style to the HTML page.Such as fonts,background,height,width etc.
For example:
h1{
font:20px;
background:red;
}
The above written CSS is for the h1 tag in HTML.The font size will be 20 pixels and background color will be red.
So we can say that we need to enclose properties and values in curly braces.
num1 = float(input("Enter the first number: "))
num2 = float(input("Enter the second number: "))
if num1 > num2:
print(num1)
else:
print(num2)
I hope this helps!