Answer:
Apple iOS
Explanation:
A software can be defined as a set of executable instructions (codes) or collection of data that is used typically to instruct a computer on how to perform a specific task and solve a particular problem.
Basically, softwares are categorized into two (2) main categories and these are;
I. Proprietary software: it's also known as a closed-source software and it can be defined as any software application or program that has its source code copyrighted and as such cannot be used, modified or distributed without authorization from the software developer.
II. Open-source software: it's a type of software in which end users are granted the permission to use, study, modify, copy and share the software with its source code anyhow.
An Apple iOS is an example of an operating system that has the open-source software features and as such its users are faced with minimal restrictions on application development.
This ultimately implies that, if you wanted a smartphone with the fewest restrictions on application development the smartphone operating system you should choose is Apple iOS.
Answer:
actual_value = float(input("Enter the actual value of a piece of property: "))
tax_rate = float(input("Enter the current tax rate for each $100.00 of assessed value: "))
assessed_value = actual_value * 0.6
tax = (assessed_value * tax_rate) / 100
print("The annual property tax is $" + str(tax))
Explanation:
*The code is in Python.
Ask the user to enter the actual value and the tax rate
Calculate the assessed value, multiply the actual value by 0.6
Calculate the tax, multiply the assessed value by the tax rate and divide result by 100
Print the tax
The real-valued function whose value is to be either minimized or maximized subject to the constraints defined on the given LPP over the set of feasible solutions. The objective function of a LPP is a linear function of the form z = ax + by.
All options in the Advanced tab in the Share Workbook dialog box.
- Don’t keep change history
- Show comments made by all users
- Update changes when file is saved
- Track changes for certain amount of days
- Allow changes by more than one user at a time
- Automatically update changes in certain time periods
<u>Explanation:</u>
In shared workbook in advanced tab it has following options. Based on end user selection changes are applied on shares workbook.
1. Either keep the history for certain period or don’t keep the history on shared workbook.
2. On share work Save changes on period schedule (automatically update) or just see other user changes.
3. Before changes are made for share workbook either prompt for save option or last modified saved.
4. Printer review and filter setting for personal view.
Answer:
BEGIN
INPUT N
IF N>0 AND N<10 THEN
OUTPUT "blue"
ELSE
IF N>10 AND N<20 THEN
OUTPUT "red"
ELSE
IF N>20 AND N<30 THEN
OUTPUT "green"
ELSE
OUTPUT "It is not a correct color option"
ENDIF
END.
Explanation: