its less is more A
to much could make it really bad
Answer:
The program is as follows:
#include <iostream>
#include <iomanip>
using namespace std;
int main(){
int num1, num2, num3;
cin>>num1>>num2>>num3;
cout << fixed << setprecision(2);
cout<<(num1 + num2 + num3)/3<<" ";
cout<<num1 * num2 * num3<<" ";
return 0;
}
Explanation:
This declares three integer variables
int num1, num2, num3;
This gets input for the three integers
cin>>num1>>num2>>num3;
This is used to set the precision to 2
cout << fixed << setprecision(2);
This prints the average
cout<<(num1 + num2 + num3)/3<<" ";
This prints the product
cout<<num1 * num2 * num3<<" ";
Answer: Virtual local-area network (VLAN)
Explanation:Virtual LAN(local area network) is the network that works on the particular geographical environment/domain in separative way by pretending to be working in the same local area.
This network works to maintain the security and network management in the geographical area .It is implement to gain the scalability and adaptability to the changes occurring in the network.
Answer:
B
binary numbers
Explanation:
because she does not know what they mean it can be data or information but we are not sure so the best answer is B.
Answer:
Umm what? Are you talking about the type of problem it is? If so it is an optimization problem.
Explanation:
I had something like this for one of my tests and I chose the optimization problem because it finds the values of decision variables that result in a maximum or minimum of a function.
But ion know if it's this that you are talking about