1) You don't know if the source is reliable.
2) It is better to cite reliable sources so.
Answer:
B
Explanation:
Text is the best paper choice.
Have a great day
So here are the answers that would best complete the given statements above.
1. <span>The standard resolution for graphics on the Web is 72 dpi.
2. </span> The larger the <span>resolution, the larger the file size.
3. </span>An Inline <span>image is an image that appears on a Web page.
4. File </span><span>size, download times, and the number of colors are factors that will help you decide which graphic format you should use.
5. </span> Adobe Photoshop <span>is an image editing program.
6. The IMG tag </span><span>s used to bring an image into a Web site.
7. The PNG </span><span>format was the most recently developed popular graphic format. </span>
Explanation:
Answer in the attached image...
hope it helps
Answer:
<u>Program:</u>
Module Module1
Function Days(intYears As Integer, intMonths As Integer, intWeeks As Integer) As Integer
' 1 year = 365days
' 1 month=30.417 days
' 1 week = 7 days
Days = 365 * intYears + 30.417 * intMonths + 7 * intWeeks
End Function
Sub Main()
Dim years, months, weeks As Integer
Console.Write("Enter the number of years: ")
years = Convert.ToInt32(Console.ReadLine())
Console.Write("Enter the number of months: ")
months = Convert.ToInt32(Console.ReadLine())
Console.Write("Enter the number of weeks: ")
weeks = Convert.ToInt32(Console.ReadLine())
Console.WriteLine("Days: " & Days(years, months, weeks))
Console.ReadKey()
End Sub
End Module