Answer:
NOT mobile app. NOT Cloud-based app.
Explanation:
A statement which best describes the types of products and services that are suitable for online sale is: D. Not all products or services are well-suited for sale on the Internet.
<h3>What is e-commerce?</h3>
E-commerce is also referred to as an online sale and it can be defined as a business model which is designed and developed to involve the buying and selling of goods (products) over the Internet.
Basically, e-commerce technologies are designed and developed to comprises software and information technology (IT) systems which typically support safe and secure transactions over network and the Internet, so as to make e-commerce possible.
<h3>What is a product?</h3>
A product can be defined as any physical object (tangible item) that is typically produced by a manufacturer so as to satisfy and meet the demands, needs or wants of every customer. Some examples of a product include the following:
In conclusion, we can infer and logically deduce that it is not all products or services that are well-suited for sale on the Internet through e-commerce.
Read more on e-commerce here: brainly.com/question/23369154
#SPJ1
Answer:
C
Explanation:
Because they don't want you to share your password
Answer:
#include <iostream>
using namespace std;
int main()
{
int side1=0;
int side2=0;;
int side3=0;
cout <<"Enter side one measurement";
cin >> side1;
cout <<"Enter side two measurement";
cin >> side2;
cout <<"Enter side three measurement";
cin >> side3;
if(side1+side2>side3||side1+side3>side2||side2+side3>side1){
if (side1==side2 && side2==side3)
{
cout <<"equilateral triangle"<<endl;
}
else if(side1==side2||side2==side3||side1==side3){
cout <<"Isosceles triangle"<<endl;
}
else{
cout <<"scalene triangle"<<endl;
}
}else{
cout<<"No triangle";
}
return 0;
}
Explanation:
The code is written in c++. It takes measurements of each side from users as input and check the types of triangle based on the following formula.
1. Equilateral Triangle
If all sides of a triangle are equal than it's an equilateral triangle.
2. Isosceles Triangle
If any two sides of a triangle are equal than it's an Isosceles triangle.
3. Scalene Triangle
If all the sides of a triangle are of different length than it's an Scalene triangle.
In a triangle the sum of two sides is greater than third side otherwise it's not a triangle.
Answer:
keep driving and prey that it doesn't melt the tape holding your gas tank up