Answer:
To change the background color, select the form in Visual Studio and locate the BackColor property in the Properties panel. There are a number of ways to specify a color. Color by name - Simply type in a color name into the BackColor value field (for example Red, Yellow, Cyan etc).
Explanation:
Answer:C)User interface
Explanation: User interface(UI) is the interaction phase of the user or programmer with the computer system and network. This phase helps the user to connect with the operating system function and let them process it according to the requirement. Example-monitor , keyboard, mouse etc.
Other options that are given are incorrect because operating system is the system that is part of the interface , information is the data and storage is for the storing of data,.Thus the correct option is option(C)
This contains pretty much what you need:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>The Page Title</title>
</head>
<body>
<h1>First paragraph</h1>
<p>This is a paragraph of text.</p>
<h2>Second level paragraph</h2>
<p>
Here is an unordered list of options:
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ul>
Here is another unordered list of options:
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ul>
Here is an ordered list of options:
<ol>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ol>
</p>
<h4>Third level</h4>
</body>
</html>