The answer to this problem is Linux
Answer:
False
They increase switching costs .
Those would be numbers below 1.
Explanation:
.5•.5 = .25
-2•-2 = -4
Hope this helps!
Also consider giving me brainliest.
Answer: d) Hierarchy of data
Explanation:
- Hierarchy of data is defined as arrangement of data in systematic way .The arrangement of files,character,records etc is done in a particular order usually in terms of highest level and lowest level .
- According to the question ,hierarchy of data should be used for organizing data from smallest stage to highest stage for database designing.
- Other options are incorrect alphabetical designing is based on alphabetical order. Detail structure is a model made on basis of details and features.
- Data design is the model or structure that includes data and related factors as building block.Logical order is the organizing elements on basis of particular logic.
- Thus, the correct option is option(d).
Answer:
The program in C++ is as follows:
#include <iostream>
using namespace std;
int main(){
int qty;
float discount = 0;
cout<<"Quantity: ";
cin>>qty;
int cost = qty * 100;
{ ; }
cout<<"Cost: "<<cost - discount;
return 0;
}
Explanation:
This declares the quantity as integer
int qty;
This declares and initializes discount to 0
float discount = 0;
This prompts the user for quantity
cout<<"Quantity: ";
This gets input for quantity
cin>>qty;
This calculates the cost
int cost = qty * 100;
If cost is above 1000, a discount of 10% is calculated
{ ; }
This prints the cost
cout<<"Cost: "<<cost - discount;