Answer:
Explanation:
Meaningful decisions are important to sustaining immersion, but it's generally considered poor game design to constantly give the player "critical" decisions. Describe a game you know and how it asks the player to make a variety of decisions from the different levels of Tracy Fullerton's Decision Scale.
Answer:
This program is written in C++
Note that the average is calculated without the highest and the least value.
Comments are used for explanatory purpose
See attachment for .cpp file.
Program starts here
#include<iostream>
using namespace std;
int main()
{
int num;
cout<<"Enter Number of Test [0-10]: ";
//cin>>num;
while(!(cin>>num) || num > 10|| num<0)
{
cout << "That was invalid. Enter a valid digit: "<<endl;
cin.clear(); // reset the failed input
cin.ignore(123,'\n');//Discard previous input
}
//Declare scores
int scores[num];
//Accept Input
for(int i =0;i<num;i++)
{
cout<<"Enter Test Score "<<(i+1)<<": ";
cin>>scores[i];
}
//Determine highest
int max = scores[0];
for (int i = 1; i < num; i++)
{
if (scores[i] > max)
{
max = scores[i];
}
}
//Determine Lowest
int least = scores[0];
for (int i = 1; i < num; i++)
{
if (scores[i] < least)
{
least = scores[i];
}
}
int sum = 0;
//Calculate total
for(int i =0; i< num;i++)
{
sum += scores[i];
}
//Subtract highest and least values
sum = sum - least - max;
//Calculate average
double average = sum / (num - 2);
//Print Average
cout<<"Average = "<<average<<endl;
//Print Highest
cout<<"Highest = "<<max<<endl;
//Print Lowest
cout<<"Lowest = "<<least;
return 0;
}
Sorry i need points an i don’t understand✌
Explanation:
I don't know, because I had only spent one month in brainly. but I think it is Mister 360. s/he is a great answerer and always stay at top in leaderboard.
Explanation:
ICT Practical Work
3rd Stage
In this next process, carry out an analysis of where the information travels. For which we must have read and understood the functions of the nodes.
An English executive wishes to send a letter to an Argentine colleague to organize a commercial operation.
Write a draft in English.
The secretary translates it into Spanish.
Envelopes it properly to send the letter by air.
Label it.
He takes it to the mail where it is bagged, after sorting, with other envelopes, for different destinations, in the city of Bs. As. According to the transport possibilities, they decide if it will be sent on a direct flight, or with a stopover in Rió De Janeiro.
The post office of Bs. As. Verifies the state of the envelope, because if it is damaged; You can return it to the sender or (if the destination is legible) deliver it with a warning note regarding the condition of the envelope.
The Argentine executive receives the letter and, despite agreeing with the conditions of the transaction, detects a spelling error, corrects it, and responds to his colleague.
At what point in this process, would you locate each of the following node functions? : Interface, transmission, error detection, format conversion,