Answer:
C. Product differentiation
Explanation:
-Rivalry refers to the competition between people or organizations when they have the same goal.
-Buyer power refers to the situation in which customers are able to have influence on things like quality and prices of the products offered by companies.
-Product differentiation refers to trying to differentiate a product or service from its competition to make it more attractive for the customer.
-Substitute product is a good that can be used instead of another one.
According to this, Amazon is using product differentiation to achieve this competitive advantage as it is offering products tailored to a particular customer which is an effort to make the product distinguish from the similar ones and get the customer to buy it.
Answer:
C because whatever a search engine is it will need a search form to do its job, so C (maybe d)
Answer:
here is code in C++.
#include <bits/stdc++.h>
using namespace std;
int main()
{
// variables to store number of each video
int new_video,old_video;
double total_charge;
cout<<"Please enter number of new video:";
// read number of new video
cin>>new_video;
cout<<"Please enter number of old video:";
// read number of old video
cin>>old_video;
// total change
total_charge=(3.0*new_video)+(2.0*old_video);
cout<<"total cost is: "<<total_charge<<endl;
return 0;
}
Explanation:
Declare two variables "new_video" and "old_video" to store the number of each type of video.Read the value of both from user.Then calculate total charge by multiply 3.0 to number of new video & 2.0 to number of old video and add both of them. This will be the total charge.
Output:
Please enter number of new video:4
Please enter number of old video:6
total cost is: 24
The pseudocode to find the sum of all integers that are multiples of 9, from 1 to 250.
totalSum = 0
for i from 1 to 250{
if i is divided by 9 and remainder is 0{
totalSum = totalSum + i;
}
}
print(totalSum)
in python language the code will be
totalSum = 0
for i in range(1,250):
if i%9==0:
totalSum += i
If you will run the program , the answer would be 3402.
45, 78, 23, 12, 63, 90, 38, 56, 88, 15 Using the sequential search as described in this chapter, how many comparisons are requir
Alecsey [184]
Explanation:
By using the sequential search we find the following results.
- The first key is 90 and its comparison number is 6.
- The second key is 14 and its comparison number is 10.
- The third key is 45 and its comparison number is 1.
- The fourth key is 23 and its comparison number is 3.
- The fifth key is 5 and its comparison number is 10.