Yes. If you are in an accident you must carry your insurance. It is required by law to have insurance.
Answer:
The corresponding schemas I use such as given below.
Explanation:
- <u>Dim</u>: Used in the design for certain artifacts belonging to measurements.
- <u>Fact</u>: Used for these artifacts throughout the design relevant to the truth
- <u>Admin</u>: Used for all configuration-related artifacts that could be open to professional end-users.
- <u>Audit</u>: That used to hold audit-related particles.
- <u>Etl</u>: Is used for keeping objects, particularly staging details, directly connected to something like the ETL method.
- <u>Report</u>: Used to keep objects utilized explicitly for programs for documentation.
- <u>Olap</u>: Used for keeping objects directly used for systems for study.
- <u>Test</u>: Used to carry objects which have been used exclusively for research.
- <u>Useful</u>- Used to carry objects that just about any member including its implementation may typically use.
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
Thye firsat one sis the corerest