Answer:
I believe the correct answer is Application Software.
Explanation:
Answer:
Follows are the solution to this question:
Explanation:
3 priceless methodologies in which you can use to expand your client base are higher quality, stronger web presence as well as good customer service. Good made involves having good, sturdy, and achievable goods. Well-made also implies a quality product it's cash not just a cheap item with one usage. Greater online presence implies a nice, intriguing, user-friendly website, that also allows users to pay with their product lines at a certain time. It also implies which your brand information is up to date on one's homepage regularly. Good customer service indicates that clients who've had problems or questions about your item should be able to give quality cooperation on customer support. It includes courteous employees to a go understanding and prepared to screen the argument.
Answer:
<em>C++</em>
////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<int> v;
int n = 1;
while (n != 0) {
cout<<"Enter an integer, the input ends if it is 0: ";
cin>>n;
v.push_back(n);
}
cout<<endl;
///////////////////////////////////////////////////////////
int sum = 0;
int num_positives = 0, num_negatives = 0;
for (int i=0; i<v.size()-1; i++) {
if (v[i] > 0)
++num_positives;
else
++num_negatives;
sum = sum + v[i];
}
//////////////////////////////////////////////////////////
cout<<"The number of positives is "<<num_positives<<endl;
cout<<"The number of negatives is "<<num_negatives<<endl;
cout<<"The total is "<<sum<<endl;
cout<<"The average is "<<(float)sum/(v.size()-1);
///////////////////////////////////////////////////////////
return 0;
}
Answer:
The answer is "True"
Explanation:
The information, that is true or false in the statement is missing, which can be defined as follows:
- The interface is a part of the Java programming language, which offers you to achieve multiple inheritances. It is also known as a common limit, that exchanges information on two or more separate parts of a computer network.
- It also contains the abstract method, and an interface to interface inheritance it uses extends keyword, and in the interface to a class, it uses the implement keyword.
The answer is commissioned