Answer:
An HTML tag is a special word or letter surrounded by angle brackets, < and >. You use tags to create HTML elements , such as paragraphs or links.
Explanation:
Many elements have an opening tag and a closing tag — for example, a p (paragraph) element has a <p> tag, followed by the paragraph text, followed by a closing </p> tag. HTML Editors
Step 1: Open Notepad (PC) Windows 8 or later: ...
Step 1: Open TextEdit (Mac) Open Finder > Applications > TextEdit. ...
Step 2: Write Some HTML. Write or copy the following HTML code into Notepad: ...
Step 3: Save the HTML Page. Save the file on your computer. ...
Step 4: View the HTML Page in Your Browser. hope this helps you :) god loves you :)
A CD-ROM (/ˌsiːdiːˈrɒm/, compact disc read-only memory) is a pre-pressed optical compact disc that contains data. Computers can read—but not write to or erase—CD-ROMs, i.e. it is a type of read-only memory.
Read mechanism: 600-780nm laser diode, 150 ...
Usage: Data storage
Capacity: 194 MiB (8 cm), 650–900 MiB (12 cm)
Hope this helps...
Answer:
184
Explanation:
Given the codes
- int cost = 82;
-
- if (cost < 100)
- {
- cost = cost + 10;
- }
-
- if (cost > 50)
- {
- cost = cost * 2;
- }
-
- if (cost < 100)
- {
- cost = cost - 20;
- }
The initial value of cost is 82.
The if condition in Line 3 will pass and therefore cost = 82 + 10 = 92
The if condition in Line 8 will pass and therefore cost = 92 * 2 = 184
The if condition in Line 13 will fail l and therefore the if block will be skipped.
At last, the we get cost = 184.
Answer:
i would say C.output
Explanation:
the program would be the code, the input would be the input, and the memory card would be the memory leaving the output as the only thing forgotten.