Answer:
#include <iostream>
using namespace std;
int main()
{
int exam1 = 70;
int exam2 = 85;
int examAverage;
examAverage = (exam1+exam2)/2;
cout <<"The Average of Exam1 and Exam2 is: "<<examAverage<<endl;
return 0;
}
Explanation:
Using the C++, we declare the three variables all of type
exam1
exam2 and
examAverage
We assign initial values of 70 and 85 to exam1 and exam2 respectively
Answer: evolutionary with high fidelity
Explanation:
You are trying to improve the model so that it is able to match any problem. This is evolutionary.
At the same time the model seems to be close to being finalised with all the improvements being made. It is past the design stage and so must be a high fidelity prototype.
Answer:
A location in memory which stores a value, the value can change as the program is running is known as a variable.
Answer:
percentage
Explanation:
percentage, character, interger
Answer:
(In Python 3.8.6)
import sys
while 7 > 6:
input = str(sys.stdin.readline())
if input == "Nope":
break
else:
print(f"Nice to meet you, {input}.")