Answer:
ok i help you i like it 11:30 ok
Create a 100-word internet company
Answer:
The World Wide Web.
Explanation:
The World Wide Web was created at CERN in Switzerland in 1990. Today, people can pay money to access the Internet from internet service providers.
Hope this helps!
xoxo,
cafeology
Ismael is examining a report in Access. He needs to access a view that will be used to examine and change the structure of the report, including the ability to add or modify controls. Which view should he choose?
Design
Layout
Print Preview
Report
Answer:
The answer is "Design"
Explanation:
Reports offer an approach to view, design, and sum up the data in your Microsoft Access information base. For instance, you can make a basic report of telephone numbers for every one of your contacts, or a rundown report on the absolute deals across various locales and You can make a wide range of reports in Access, going from the easy to the complex. Start by contemplating your report's record source.
Regardless of whether your report is a straightforward posting of records or a gathered rundown of deals by area, you should initially figure out which fields contain the information you need to find in your report, and in which tables or inquiries they reside.
What are the two types of programming languages?
Answer:
High level language.
Low level language
Explanation:
please give brainliest
Write a function that will find the cost to send an international fax. The service charge is $7.00. It costs $0.45 per page for the first ten pages and $0.10 for each additional page. Take as parameter the number of pages to be faxed, and calculate the total amount due. The total amount due is returned to the main program.
Answer:
This function is written in python
def intlfax(pages):
if pages <=10:
fax = 7 + 0.45 * pages
else:
fax = 7 + 0.45 * 10 + 0.10 * (pages - 10)
return fax
Explanation:
This line defines the function
def intlfax(pages):
This checks if pages is less than or equal to 10 and calculates the fax
if pages <=10:
fax = 7 + 0.45 * pages
If otherwise, it also calculates the fax (differently)
else:
fax = 7 + 0.45 * 10 + 0.10 * (pages - 10)
This returns the calculated fax
return fax